getSupportedManufacturers method
获取当前插件支持的厂商名称列表
Implementation
@override
Future<List<String>> getSupportedManufacturers() async {
try {
final result = await methodChannel
.invokeMethod<List<dynamic>>('getSupportedManufacturers');
return result?.cast<String>() ?? [];
} on PlatformException catch (e) {
throw OaidException(code: e.code, message: e.message);
}
}