Conditional class

Properties

hashCode int
The hash code for this object.
no setterinherited
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
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

widget({required BuildContext context, required bool condition, required Widget widget, Widget? fallback}) Widget
Returns single widget in case condition == true, otherwise returns fallback which defaults to Container().
widgets({required BuildContext context, required bool condition, required List<Widget> widgets, List<Widget>? fallback}) List<Widget>
Returns list of widgets in case condition == true, otherwise returns fallback which defaults to Container().