flutterMethods property

Iterable<Method> flutterMethods

Methods implemented in Flutter.

Implementation

Iterable<Method> get flutterMethods => methods.where(
      (Method method) => method.location == ApiLocation.flutter,
    );