presentFileStream method

void presentFileStream()

Implementation

void presentFileStream() {
/* ERROR   The class 'File' does not have a default constructor
File file = new File("some_file.txt");
file.openRead()
    .transform(UTF8.decoder) // use a UTF8.decoder
    .listen((String data) => print(data), // output the data
        onError: (error) => print("Error, could not open file"),
        onDone: () => print("Finished reading data"));
 */
  print('***   nothing hyet here  *** \n');
}