TypeDescriptor<T> constructor

TypeDescriptor<T>({
  1. required String schemaType,
  2. required FromJsonConverter<T> fromJson,
  3. required String title,
})

Implementation

TypeDescriptor({
  required this.schemaType,
  required this.fromJson,
  required this.title,
});