Frame constructor
Frame({
- required Widget child,
- EdgeInsets? padding,
- EdgeInsets? margin,
- Color? background,
- Color? foreground,
- Border? border,
- Color? borderColor,
- Style? style,
- Key? key,
Implementation
Frame({
required this.child,
this.padding,
this.margin,
this.background,
this.foreground,
this.border,
this.borderColor,
this.style,
super.key,
});