JsonSafeAreaBuilderModel constructor

const JsonSafeAreaBuilderModel(
  1. Map<String, dynamic> args, {
  2. bool bottom = true,
  3. bool left = true,
  4. bool maintainBottomViewPadding = false,
  5. EdgeInsets minimum = EdgeInsets.zero,
  6. bool right = true,
  7. bool top = true,
  8. required JsonWidgetData child,
})

Implementation

const JsonSafeAreaBuilderModel(
  super.args, {
  this.bottom = true,
  this.left = true,
  this.maintainBottomViewPadding = false,
  this.minimum = EdgeInsets.zero,
  this.right = true,
  this.top = true,
  required this.child,
});