file static method

String file(
  1. String text
)

Formats text as a file name with white styling

text The file name to format

Returns the formatted file name string

Implementation

static String file(String text) {
  return colorize(text, white);
}