JsonOverflowBoxBuilderModel class

Creates a widget that lets its child overflow itself.

Inheritance

Constructors

JsonOverflowBoxBuilderModel(Map<String, dynamic> args, {AlignmentGeometry alignment = Alignment.center, OverflowBoxFit fit = OverflowBoxFit.max, double? maxHeight, double? maxWidth, double? minHeight, double? minWidth, JsonWidgetData? child})
const

Properties

alignment AlignmentGeometry
How to align the child.
final
args Map<String, dynamic>
finalinherited
child JsonWidgetData?
final
fit OverflowBoxFit
The way to size the render object.
final
hashCode int
The hash code for this object.
no setterinherited
maxHeight double?
The maximum height constraint to give the child. Set this to null (the default) to use the constraint from the parent instead.
final
maxWidth double?
The maximum width constraint to give the child. Set this to null (the default) to use the constraint from the parent instead.
final
minHeight double?
The minimum height constraint to give the child. Set this to null (the default) to use the constraint from the parent instead.
final
minWidth double?
The minimum width constraint to give the child. Set this to null (the default) to use the constraint from the parent instead.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Abstract function that concrete classes must implement. This must encode the internal data model to a JSON compatible representation.
override
toString() String
Returns the string encoded JSON representation for this class. This will remove all null values and empty collections from the returned string.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromDynamic(dynamic map, {Map<String, dynamic> args = const {}, JsonWidgetRegistry? registry}) JsonOverflowBoxBuilderModel
maybeFromDynamic(dynamic map, {Map<String, dynamic> args = const {}, JsonWidgetRegistry? registry}) JsonOverflowBoxBuilderModel?