captionStyle static method

TextStyle captionStyle(
  1. BuildContext context, {
  2. Color? foreColor,
})

Implementation

static TextStyle captionStyle(BuildContext context, {Color? foreColor})
{
  Color fc = foreColor ?? Colors.grey.shade600;
  return Theme.of(context).textTheme.bodyMedium!.copyWith(color: fc);
}