MetadataValue constructor

MetadataValue({
  1. int? intValue,
  2. double? floatValue,
  3. String? strValue,
  4. String? datetimeValue,
  5. bool? boolValue,
  6. MetadataList? listValue,
})

Implementation

MetadataValue({
  this.intValue,
  this.floatValue,
  this.strValue,
  this.datetimeValue,
  this.boolValue,
  this.listValue,
}) : super(fullyQualifiedName);