Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Dartにはクラスがあります:
class A implements Iterable<MyType>{ List<MyType> children; //other members for A class }
を使用せずに、すべてのメソッドをメンバーnoSuchMethodに暗黙的に転送することは可能ですか?Iterable<MyType>List<MyType> children;
noSuchMethod
Iterable<MyType>
List<MyType> children;