updateMetadata method

Future<void> updateMetadata(
  1. Map<String, String> metadata
)

Updates metadata for this space.

The attributes are stored on the space path and immediately available to other callers.

await space.updateMetadata({'status': 'active'});

Implementation

Future<void> updateMetadata(Map<String, String> metadata) async {
  await client.updateSpaceMetadata(path, metadata);
}