Steps to Reproduce
Run flutter pub run pigeon on top of the following snippet:
@HostApi()
abstract class TestApi {
void provideList(List list);
}
Expected results:
Pigeon with List should get generated
Actual results:
Generation will error out with Error: pigeons/pigeons.dart: Unsupported argument type: "List" in API: "TestApi" method: "provideList
@gaaclarke
Steps to Reproduce
Run
flutter pub run pigeonon top of the following snippet:Expected results:
Pigeon with List should get generated
Actual results:
Generation will error out with
Error: pigeons/pigeons.dart: Unsupported argument type: "List" in API: "TestApi" method: "provideList@gaaclarke