BoxModel constructor

BoxModel({
  1. List<double>? content,
  2. List<double>? padding,
  3. List<double>? border,
  4. List<double>? margin,
  5. int? width,
  6. int? height,
})

Implementation

BoxModel(
    {this.content,
    this.padding,
    this.border,
    this.margin,
    this.width,
    this.height});