allConstructors method

List<ConstructorReflection<O>> allConstructors()

Returns a List with all constructors ConstructorReflection.

Implementation

List<ConstructorReflection<O>> allConstructors() =>
    _allConstructors ??= List<ConstructorReflection<O>>.unmodifiable(
        constructorsNames.map((e) => constructor(e)!));