ContainerLookAndFeel constructor

ContainerLookAndFeel({
  1. required String background,
  2. String? backgroundAttachment,
  3. String? backgroundBlendMode,
  4. String? backgroundClip,
  5. required String backgroundColor,
  6. required String backgroundImage,
  7. String? backgroundOrigin,
  8. String? backgroundPosition,
  9. String? backgroundRepeat,
  10. required String backgroundSize,
  11. required String padding,
  12. required String borderRadius,
})

Implementation

ContainerLookAndFeel(
    {required this.background,
    this.backgroundAttachment,
    this.backgroundBlendMode,
    this.backgroundClip,
    required this.backgroundColor,
    required this.backgroundImage,
    this.backgroundOrigin,
    this.backgroundPosition,
    this.backgroundRepeat,
    required this.backgroundSize,
    required this.padding,
    required this.borderRadius});