apiMethods method

List<MethodReflection<O, dynamic>> apiMethods()

Lists the API methods of this reflected class. See MethodReflectionExtension.isAPIMethod.

Implementation

List<MethodReflection<O, dynamic>> apiMethods() =>
    allMethods().where((m) => m.isAPIMethod).toList();