Schema<T> constructor

Schema<T>({
  1. required String type,
  2. String? title,
  3. String? description,
  4. T? defaultValue,
})

Implementation

Schema({required this.type, this.title, this.description, this.defaultValue});