TRowStyle constructor
const
TRowStyle({
- EdgeInsets margin = const EdgeInsets.only(bottom: 8),
- EdgeInsets padding = const EdgeInsets.symmetric(vertical: 12, horizontal: 16),
- double elevation = 1,
- BorderRadius borderRadius = const BorderRadius.all(Radius.circular(8)),
- Color? backgroundColor,
- Color? selectedBackgroundColor,
- Border? border,
Implementation
const TRowStyle({
this.margin = const EdgeInsets.only(bottom: 8),
this.padding = const EdgeInsets.symmetric(vertical: 12, horizontal: 16),
this.elevation = 1,
this.borderRadius = const BorderRadius.all(Radius.circular(8)),
this.backgroundColor,
this.selectedBackgroundColor,
this.border,
});