CSSBackgroundSize constructor

CSSBackgroundSize({
  1. required BoxFit fit,
  2. CSSLengthValue? width,
  3. CSSLengthValue? height,
})

Implementation

CSSBackgroundSize({
  required this.fit,
  this.width,
  this.height,
});