csvFile property

String? csvFile

Implementation

static String? get csvFile {
  if (_csvFile == null || _csvFile!.isEmpty) {
    _csvFile = kDefaultCSV;
  }
  return _csvFile;
}