getBodyStyle method

TextStyle? getBodyStyle(
  1. BuildContext context,
  2. bool isRead
)

Implementation

TextStyle? getBodyStyle(BuildContext context, bool isRead) {
  return (isRead ? bodyStyle.read : bodyStyle.unread) ?? Theme.of(context).textTheme.bodyMedium;
}