allStaticMethods method
Returns a List with all static methods MethodReflection.
Implementation
List<StaticMethodReflection<O, dynamic>> allStaticMethods() =>
_allStaticMethods ??=
List<StaticMethodReflection<O, dynamic>>.unmodifiable(
staticMethodsNames.map((e) => staticMethod(e)!));