internalUseOfAz method

AzIcon internalUseOfAz({
  1. double? size,
  2. Color? color,
  3. String? semanticLabel,
  4. TextDirection? textDirection,
})

Implementation

AzIcon internalUseOfAz({
  double? size,
  // double? fill,
  // double? weight,
  // double? grade,
  // double? opticalSize,
  Color? color,
  // List<Shadow>? shadows,
  String? semanticLabel,
  TextDirection? textDirection,
}){
  _size = size;
  // _fill = fill;
  // _weight = weight;
  // _grade = grade;
  // _opticalSize = opticalSize;
  _color = color;
  // _shadows = shadows;
  _semanticLabel = semanticLabel;
  _textDirection = textDirection;
  return this;
}