Box constructor

const Box({
  1. Mix<Attribute>? mix,
  2. Key? key,
  3. bool inherit = false,
  4. List<Variant<Attribute>>? variants,
  5. Widget? child,
})

Implementation

const Box({
  Mix? mix,
  Key? key,
  bool inherit = false,
  List<Variant>? variants,
  this.child,
}) : super(
        mix,
        variants: variants,
        inherit: inherit,
        key: key,
      );