backgroundImageUrl method
IconButtonStyler
backgroundImageUrl(
- String url, {
- BoxFit? fit,
- AlignmentGeometry? alignment,
- ImageRepeat repeat = .noRepeat,
Implementation
IconButtonStyler backgroundImageUrl(
String url, {
BoxFit? fit,
AlignmentGeometry? alignment,
ImageRepeat repeat = .noRepeat,
}) {
return container(
BoxStyler().backgroundImageUrl(
url,
fit: fit,
alignment: alignment,
repeat: repeat,
),
);
}