Frame constructor

Frame({
  1. required Widget child,
  2. EdgeInsets? padding,
  3. EdgeInsets? margin,
  4. Color? background,
  5. Color? foreground,
  6. Border? border,
  7. Color? borderColor,
  8. Style? style,
  9. Key? key,
})

Implementation

Frame({
  required this.child,
  this.padding,
  this.margin,
  this.background,
  this.foreground,
  this.border,
  this.borderColor,
  this.style,
  super.key,
});