ResultMetadata constructor

ResultMetadata({
  1. String? dataType,
  2. Object? defaultValue,
  3. String? description,
  4. String? field,
  5. JsonSchema? jsonSchema,
  6. bool? nullable,
})

Implementation

ResultMetadata({
  this.dataType,
  this.defaultValue,
  this.description,
  this.field,
  this.jsonSchema,
  this.nullable,
});