appendString method

Future<File> appendString(
  1. String content
)

Implementation

Future<File> appendString(String content) async {
  await writeAsString(content, mode: FileMode.append);
  return this;
}