backgroundImageAsset method
SelectMenuItemStyler
backgroundImageAsset(
- String path, {
- BoxFit? fit,
- AlignmentGeometry? alignment,
- ImageRepeat repeat = .noRepeat,
Implementation
SelectMenuItemStyler backgroundImageAsset(
String path, {
BoxFit? fit,
AlignmentGeometry? alignment,
ImageRepeat repeat = .noRepeat,
}) {
return container(
FlexBoxStyler().backgroundImageAsset(
path,
fit: fit,
alignment: alignment,
repeat: repeat,
),
);
}