settings method

  1. @MPI(flags: 8, name: "_{mesh.name}.devops.x.settings")
Future<Map<String, Settings>?> settings({
  1. Context? ctx,
})

Settings get the system settings. 获取系统设置信息,这是一个通用接口,可以设置所有的应用设置信息.

Implementation

@MPI(flags: 8, name: "_{mesh.name}.devops.x.settings")
Future<Map<String, Settings>?> settings({Context? ctx}) {
  throw UnimplementedError('settings() has not been implemented.');
}