only method
T
only({
- ColorDto? color,
- double? size,
- double? weight,
- double? grade,
- double? opticalSize,
- List<
ShadowDto> ? shadows, - double? fill,
- bool? applyTextScaling,
- AnimatedDataDto? animated,
override
Implementation
@override
T only({
ColorDto? color,
double? size,
double? weight,
double? grade,
double? opticalSize,
List<ShadowDto>? shadows,
double? fill,
bool? applyTextScaling,
AnimatedDataDto? animated,
}) {
return builder(
IconSpecAttribute(
size: size,
color: color,
weight: weight,
grade: grade,
opticalSize: opticalSize,
shadows: shadows,
fill: fill,
applyTextScaling: applyTextScaling,
animated: animated,
),
);
}