Prop constructor

const Prop(
  1. String name,
  2. Type type, [
  3. String? readAnnotation = null,
  4. String? writeAnnotation = null,
  5. bool recordable = false,
])

Implementation

const Prop(this.name, this.type,
    [this.readAnnotation = null,
    this.writeAnnotation = null,
    this.recordable = false]);