currentUserTextColor method

Color currentUserTextColor(
  1. BuildContext context
)

Color of the current user text in chat bubbles

Default to: Theme.of(context).colorScheme.onPrimary

Implementation

Color currentUserTextColor(BuildContext context) {
  return _currentUserTextColor ?? Theme.of(context).colorScheme.onPrimary;
}