Eared constructor
Eared({
- Key? key,
- Widget? leading,
- Widget? trailing,
- Decoration? decoration,
- EdgeInsets? padding,
- EdgeInsets? margin,
- required Widget middle,
- Color? color,
- double? height,
- double? width,
Implementation
Eared(
{Key? key,
this.leading,
this.trailing,
this.decoration,
this.padding,
this.margin,
required this.middle,
this.color,
this.height,
this.width})
: super(
key: key,
color: color,
margin: margin,
height: height,
width: width,
padding: padding,
decoration: decoration,
child: Row(children: [leading!, Expanded(child: middle), trailing!]));