bind method
CellIcon
bind({
- ValueCell<
IconData?> ? icon, - ValueCell<
double?> ? size, - ValueCell<
double?> ? fill, - ValueCell<
double?> ? weight, - ValueCell<
double?> ? grade, - ValueCell<
double?> ? opticalSize, - ValueCell<
Color?> ? color, - ValueCell<
List< ? shadows,Shadow> ?> - ValueCell<
String?> ? semanticLabel, - ValueCell<
TextDirection?> ? textDirection, - ValueCell<
bool?> ? applyTextScaling,
Implementation
CellIcon bind({
ValueCell<IconData?>? icon,
ValueCell<double?>? size,
ValueCell<double?>? fill,
ValueCell<double?>? weight,
ValueCell<double?>? grade,
ValueCell<double?>? opticalSize,
ValueCell<Color?>? color,
ValueCell<List<Shadow>?>? shadows,
ValueCell<String?>? semanticLabel,
ValueCell<TextDirection?>? textDirection,
ValueCell<bool?>? applyTextScaling,
}) =>
CellIcon(
icon: icon ?? this.icon,
size: size ?? this.size,
fill: fill ?? this.fill,
weight: weight ?? this.weight,
grade: grade ?? this.grade,
opticalSize: opticalSize ?? this.opticalSize,
color: color ?? this.color,
shadows: shadows ?? this.shadows,
semanticLabel: semanticLabel ?? this.semanticLabel,
textDirection: textDirection ?? this.textDirection,
applyTextScaling: applyTextScaling ?? this.applyTextScaling,
);