Like:
@Injectable()
class ApiService {
Future<T> fetch<T>(String path) {
...
}
}
this doesn't seem to work
Like:
@Injectable()
class ApiService {
Future<T> fetch<T>(String path) {
...
}
}
this doesn't seem to work
Copyright © 2021 Jogjafile Inc.
It seems that it was fixed within the analyzer package 0.29:
https://github.com/dart-lang/sdk/blob/master/pkg/analyzer/CHANGELOG.md
However, if you do:
you will get a "dynamic" instead of the original class, which, very unfortunately, doesn't help me