clearMetadata method

  1. @override
Future<void> clearMetadata(
  1. String section, [
  2. String? key
])
inherited

If key is not null: removes data with the specified key from the specified section. Otherwise remove all the data from the specified section.

Implementation

@override
Future<void> clearMetadata(String section, [String? key]) =>
    client.clearMetadata(section, key);