funCode property

  1. @override
String funCode
final

生成的目标方法代码片段,实现清除所有配置并刷新读取。

代码片段会被插入到被注解的方法体中,实现:

  1. 调用配置代理删除所有值
  2. 重新读取配置

Implementation

@override
final String funCode = '''
await _ConfigProxy.deleteAllValues();
_read();
''';