IconSpec.exhaustive constructor

const IconSpec.exhaustive({
  1. required Color? color,
  2. required double? size,
  3. required double? weight,
  4. required double? grade,
  5. required double? opticalSize,
  6. required List<Shadow>? shadows,
  7. required TextDirection? textDirection,
  8. required bool? applyTextScaling,
  9. required double? fill,
  10. required AnimatedData? animated,
})

Implementation

const IconSpec.exhaustive({
  required this.color,
  required this.size,
  required this.weight,
  required this.grade,
  required this.opticalSize,
  required this.shadows,
  required this.textDirection,
  required this.applyTextScaling,
  required this.fill,
  required super.animated,
});