我正在尝试通过遵循FilledStacks上传的此视频来实现堆叠体系结构。
我在使用可注入(inject)pub软件包时遇到问题
https://pub.dev/packages/injectable
我的locator.dart类代码如下
import 'package:get_it/get_it.dart';
import 'package:injectable/injectable.dart';
final locator = GetIt.instance;
@injectableInit
void setupLocator() => $initGetIt(locator);
在 $initGetIt(locator)
上出现此错误The function '$initGetIt' isn't defined.
Try importing the library that defines '$initGetIt', correcting the name to the name of an existing function, or defining a function named
即使我按照软件包文档中显示的方式实现软件包https://www.youtube.com/watch?v=DO8le1W_HqQ&t=914s
最佳答案
injectable_generator:
flutter packages pub run build_runner build
$initGetIt
关于flutter - 使用可注入(inject)pub包时未定义函数 '$initGetIt',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/63370674/