readFile method

  1. @override
String readFile(
  1. String path
)
override

Reads the UTF-8 contents of the file at path.

Implementation

@override
String readFile(String path) => File(path).readAsStringSync();