Julia Debecka

chore: format code

... ... @@ -45,7 +45,7 @@ class ModalBottomSheet extends StatefulWidget {
required this.expanded,
required this.onClosing,
required this.child,
}) : super(key: key);
}) : super(key: key);
/// The closeProgressThreshold parameter
/// specifies when the bottom sheet will be dismissed when user drags it.
... ...
... ... @@ -16,7 +16,7 @@ class _ModalBottomSheet<T> extends StatefulWidget {
this.expanded = false,
this.enableDrag = true,
this.animationCurve,
}) : super(key: key);
}) : super(key: key);
final double? closeProgressThreshold;
final ModalBottomSheetRoute<T> route;
... ... @@ -138,7 +138,7 @@ class ModalBottomSheetRoute<T> extends PopupRoute<T> {
this.animationCurve,
this.duration,
RouteSettings? settings,
}) : super(settings: settings);
}) : super(settings: settings);
final double? closeProgressThreshold;
final WidgetWithChildBuilder? containerBuilder;
... ...
... ... @@ -14,7 +14,7 @@ class MaterialWithModalsPageRoute<T> extends MaterialPageRoute<T> {
RouteSettings? settings,
bool maintainState = true,
bool fullscreenDialog = false,
}) : super(
}) : super(
settings: settings,
fullscreenDialog: fullscreenDialog,
builder: builder,
... ...