backgroundImageUrl method

IconButtonStyler backgroundImageUrl(
  1. String url, {
  2. BoxFit? fit,
  3. AlignmentGeometry? alignment,
  4. 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,
    ),
  );
}