fileName method

String fileName(
  1. int index
)

The name of the file at the given index.

Implementation

String fileName(int index) {
  return _files[index].name;
}