SerializableFieldMirror constructor

SerializableFieldMirror({
  1. String? alias,
  2. DartObject? defaultValue,
  3. Symbol? serializer,
  4. Symbol? deserializer,
  5. String? errorMessage,
  6. bool isNullable = false,
  7. bool canDeserialize = true,
  8. bool canSerialize = true,
  9. bool exclude = false,
  10. DartType? serializesTo,
})

Implementation

SerializableFieldMirror(
    {this.alias,
    this.defaultValue,
    this.serializer,
    this.deserializer,
    this.errorMessage,
    this.isNullable = false,
    this.canDeserialize = true,
    this.canSerialize = true,
    this.exclude = false,
    this.serializesTo});