hostMethods property

Iterable<Method> hostMethods

Methods implemented in the host platform language.

Implementation

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