bind method

CellIcon bind({
  1. ValueCell<IconData?>? icon,
  2. ValueCell<double?>? size,
  3. ValueCell<double?>? fill,
  4. ValueCell<double?>? weight,
  5. ValueCell<double?>? grade,
  6. ValueCell<double?>? opticalSize,
  7. ValueCell<Color?>? color,
  8. ValueCell<List<Shadow>?>? shadows,
  9. ValueCell<String?>? semanticLabel,
  10. ValueCell<TextDirection?>? textDirection,
  11. 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,
    );