FlutterWebFrame constructor

const FlutterWebFrame({
  1. Key? key,
  2. required WidgetBuilder builder,
  3. bool enabled = true,
  4. Color? backgroundColor,
  5. required Size maximumSize,
  6. Clip clipBehavior = Clip.none,
})

Implementation

const FlutterWebFrame({
  Key? key,
  required this.builder,
  this.enabled = true,
  this.backgroundColor,
  required this.maximumSize,
  this.clipBehavior = Clip.none,
}) : super(key: key);