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