register method

Future<JsonResult> register(
  1. String? mobile,
  2. String? password
)

Implementation

Future<JsonResult> register(String? mobile, String? password) {
  return bytedeskHttpApi.register(mobile, password);
}