getFileTextStyle method

TextStyle getFileTextStyle(
  1. BuildContext context
)

Returns the text style of the file name in the picker list row.

Implementation

TextStyle getFileTextStyle(BuildContext context) {
  final effectiveValue = fileTextStyle ?? const TextStyle();
  return effectiveValue;
}