customMetadata property

Map<String, String>? customMetadata

Custom metadata set on this storage object.

Implementation

Map<String, String>? get customMetadata {
  return _metadata['customMetadata'] == null
      ? null
      : Map<String, String>.from(_metadata['customMetadata']);
}