AirtableIcon.micro constructor

const AirtableIcon.micro(
  1. IconData? icon, {
  2. Key? key,
  3. double? size = 12.0,
  4. double? fill,
  5. double? weight,
  6. double? grade,
  7. double? opticalSize,
  8. Color? color,
  9. List<Shadow>? shadows,
  10. String? semanticLabel,
  11. TextDirection? textDirection,
})

Constructor fot micro Airtable icons (size 12.0).

Implementation

const AirtableIcon.micro(
  super.icon, {
  Key? key,
  double? size = 12.0,
  double? fill,
  double? weight,
  double? grade,
  double? opticalSize,
  Color? color,
  List<Shadow>? shadows,
  String? semanticLabel,
  TextDirection? textDirection,
}) : super(
        key: key,
        size: size,
        fill: fill,
        weight: weight,
        grade: grade,
        opticalSize: opticalSize,
        color: color,
        shadows: shadows,
        semanticLabel: semanticLabel,
        textDirection: textDirection,
      );