setPhoneCalibrationLanguage method
Implementation
@override
Future<void> setPhoneCalibrationLanguage({required SMKitLanguage language}) async {
try {
final arg = {'language': language.name};
methodChannel.invokeMethod('setPhoneCalibrationLanguage', arg);
} on PlatformException catch (e) {
debugPrint('PlatformException: ${e.code} ${e.message}');
}
}