JsonIconBuilder constructor

JsonIconBuilder({
  1. Color? color,
  2. required IconData? icon,
  3. String? semanticLabel,
  4. List<Shadow>? shadows,
  5. double? size,
  6. TextDirection? textDirection,
})

Implementation

JsonIconBuilder({
  this.color,
  required this.icon,
  this.semanticLabel,
  this.shadows,
  this.size,
  this.textDirection,
}) : super(numSupportedChildren: kNumSupportedChildren);