fromWire static method
- String? wire
Implementation
static TencentLocationErrorCode fromWire(String? wire) {
for (final value in TencentLocationErrorCode.values) {
if (value.wireName == wire) return value;
}
return TencentLocationErrorCode.nativeError;
}