flutterMethodsFromInterfaces method
All methods inherited from interfaces and the interfaces of interfaces.
Implementation
Iterable<Method> flutterMethodsFromInterfaces() sync* {
for (final AstProxyApi proxyApi in apisOfInterfaces()) {
yield* proxyApi.methods;
}
}