CustomMetadata constructor

CustomMetadata({
  1. String? stringValue,
  2. StringList? stringListValue,
  3. double? numericValue,
  4. required String key,
})

Implementation

CustomMetadata({
  this.stringValue,
  this.stringListValue,
  this.numericValue,
  required this.key,
}) : super(fullyQualifiedName);