import 'package:flutter/material.dart'; class OtpBody extends StatefulWidget { const OtpBody({Key? key}) : super(key: key); @override State createState() => _OtpBodyState(); } class _OtpBodyState extends State { @override Widget build(BuildContext context) { return Container(); } }