ModalSheet.material constructor

const ModalSheet.material({
  1. Key? key,
  2. required String title,
  3. required WidgetBuilder builder,
  4. Color? backgroundColor,
})

Implementation

const ModalSheet.material({
  super.key,
  required this.title,
  required this.builder,
  this.backgroundColor,
}) : _targetType = TargetType.material;