NomoOutlineContainer constructor

const NomoOutlineContainer({
  1. required Widget child,
  2. Color? foreground,
  3. double? radius,
  4. BoxBorder? border,
  5. double? width,
  6. double? height,
  7. Color? background,
  8. EdgeInsets? padding,
  9. BoxShape? shape,
  10. double? spacing,
  11. Key? key,
})

Implementation

const NomoOutlineContainer({
  required this.child,
  this.foreground,
  this.radius,
  this.border,
  this.width,
  this.height,
  this.background,
  this.padding,
  this.shape,
  this.spacing,
  super.key,
});