text method
Implementation
Widget text() {
return Builder(builder: (context) {
return Expanded(
child: Text(message,
maxLines: 4,
style: Theme.of(context).snackBarTheme.contentTextStyle),
);
});
}
Widget text() {
return Builder(builder: (context) {
return Expanded(
child: Text(message,
maxLines: 4,
style: Theme.of(context).snackBarTheme.contentTextStyle),
);
});
}