bindPhoneNum static method

Future<Map<String, dynamic>> bindPhoneNum(
  1. String phoneNum
)

Implementation

static Future<Map<String, dynamic>> bindPhoneNum(String phoneNum) async {
	final Map resMap = await _channel.invokeMethod('bindPhoneNum', {'phoneNum': phoneNum});
	return Map<String, dynamic>.from(resMap);
}