customMetadata property

Map<String, String>? customMetadata
inherited

Additional user-defined custom metadata.

Implementation

Map<String, String>? get customMetadata =>
    (dartify(jsObject.customMetadata) as Map?)?.cast<String, String>();
void customMetadata=(Map<String, String>? m)
inherited

Implementation

set customMetadata(Map<String, String>? m) {
  jsObject.customMetadata = jsify(m);
}