jsonConstructors property

List<ConstructorReflection<O>> jsonConstructors

Implementation

List<ConstructorReflection<O>> get jsonConstructors =>
    _jsonConstructors ??= List<ConstructorReflection<O>>.unmodifiable(
        allConstructors().where((e) => e.hasJsonConstructor));