SelectStyler.backgroundImageAsset constructor

SelectStyler.backgroundImageAsset(
  1. String path, {
  2. BoxFit? fit,
  3. AlignmentGeometry? alignment,
  4. ImageRepeat repeat = .noRepeat,
})

Implementation

factory SelectStyler.backgroundImageAsset(
  String path, {
  BoxFit? fit,
  AlignmentGeometry? alignment,
  ImageRepeat repeat = .noRepeat,
}) => SelectStyler().backgroundImageAsset(
  path,
  fit: fit,
  alignment: alignment,
  repeat: repeat,
);