IapetusEntityValueType<T> constructor Null safety

const IapetusEntityValueType<T>(
  1. T fromJsonFactory(
    1. Map<String, dynamic> json
    ),
  2. {required bool optional,
  3. T? defaultValue}
)

Implementation

const IapetusEntityValueType(
  this.fromJsonFactory, {
  required super.optional,
  super.defaultValue,
});