writeMetadata method

Future<bool> writeMetadata(
  1. String filePath,
  2. Metadata metadata
)

Writes metadata to the file at filePath.

Returns true if the write succeeded.

Implementation

Future<bool> writeMetadata(String filePath, Metadata metadata) {
  throw UnimplementedError('writeMetadata() has not been implemented.');
}