FloatScaffold constructor Null safety

const FloatScaffold(
  1. {Key? key,
  2. Widget? leading,
  3. Widget? middle,
  4. Widget? trailing}
)

Implementation

const FloatScaffold({
  Key? key,
  this.leading,
  this.middle,
  this.trailing,
}) : super(key: key);