SelectMenuItemStyler.backgroundImageUrl constructor

SelectMenuItemStyler.backgroundImageUrl(
  1. String url, {
  2. BoxFit? fit,
  3. AlignmentGeometry? alignment,
  4. ImageRepeat repeat = .noRepeat,
})

Implementation

factory SelectMenuItemStyler.backgroundImageUrl(
  String url, {
  BoxFit? fit,
  AlignmentGeometry? alignment,
  ImageRepeat repeat = .noRepeat,
}) => SelectMenuItemStyler().backgroundImageUrl(
  url,
  fit: fit,
  alignment: alignment,
  repeat: repeat,
);