jsonConstructorsMandatory property

List<ConstructorReflection<O>> jsonConstructorsMandatory

Implementation

List<ConstructorReflection<O>> get jsonConstructorsMandatory =>
    _jsonConstructorsMandatory ??=
        List<ConstructorReflection<O>>.unmodifiable(
            jsonConstructors.where((e) => e.hasJsonConstructorMandatory));