loadFile static method

String loadFile(
  1. String path
)

Implementation

static String loadFile(
  String path,
) {
  File file = File(path);
  return file.readAsStringSync();
}