BoxTestSpec constructor

const BoxTestSpec({
  1. AlignmentGeometry? alignment,
  2. AnimatedData? animated,
  3. Clip? clipBehavior,
  4. BoxConstraints? constraints,
  5. Decoration? decoration,
  6. Decoration? foregroundDecoration,
  7. double? height,
  8. EdgeInsetsGeometry? margin,
  9. EdgeInsetsGeometry? padding,
  10. Matrix4? transform,
  11. AlignmentGeometry? transformAlignment,
  12. double? width,
})

Creates a BoxTestSpec with the given fields

Implementation

// All parameters are optional
const BoxTestSpec({
  this.alignment,
  super.animated,
  this.clipBehavior,
  this.constraints,
  this.decoration,
  this.foregroundDecoration,
  this.height,
  this.margin,
  this.padding,
  this.transform,
  this.transformAlignment,
  this.width,
});