TypedJsonObjectValueType<J, D> constructor Null safety

const TypedJsonObjectValueType<J, D>(
  1. {required Map<String, ValueType<J, D>> fieldValueTypes,
  2. required bool optional,
  3. Map<String, D>? defaultValue}
)

Implementation

const TypedJsonObjectValueType({
  required this.fieldValueTypes,
  required super.optional,
  super.defaultValue,
});