setUserRegion method

Future<void> setUserRegion(
  1. int region
)

Sets a data processing location when you choose to manually manage and specify such a location.

REGION_DR_UNKNOWN = 1001, REGION_DR_CHINA = 1002, REGION_DR_RUSSIA = 1005, REGION_DR_GERMAN = 1006, REGION_DR_SINGAPORE = 1007

Implementation

Future<void> setUserRegion(int region) async {
  await _channel.invokeMethod(
    'bodyApp#setUserRegion',
    <String, dynamic>{
      'region': region,
    },
  );
}