writeTo method

Future<void> writeTo(
  1. File file
)

Implementation

Future<void> writeTo(File file) async {
  await file.write(_string);
}