AurisDataRow constructor
const
AurisDataRow({})
Creates a key/value data row.
Implementation
const AurisDataRow({
super.key,
required this.label,
this.value,
this.trailing,
this.highlight = false,
this.height = 40,
}) : assert(
value != null || trailing != null,
'Provide a value, a trailing widget, or both.',
);