floatingActionButton method

  1. @override
Widget floatingActionButton(
  1. AppModel app,
  2. BuildContext context,
  3. String heroTag,
  4. Widget child, {
  5. VoidCallback? onPressed,
})
override

Implementation

@override
Widget floatingActionButton(
    AppModel app, BuildContext context, String heroTag, Widget child,
    {VoidCallback? onPressed}) {
  return FloatingActionButton(
      heroTag: heroTag, child: child, onPressed: onPressed);
}