text method
T
text(
- dynamic value
Set text style - accepts String (token name like 'sm', 'base', 'lg', etc.) or TextStyle Pass null to remove all text styling and use Flutter's default text style
Implementation
T text(dynamic value) {
return copyWith(flyStyle.copyWith(text: value));
}