bindPhone method

  1. @override
Future<Result<Account>> bindPhone(
  1. String phone,
  2. String otp
)
override

Implementation

@override
Future<Result<Account>> bindPhone(String phone, String otp) async {
  final result = await AuthClient.bindPhone(phone, otp);
  return result.toOddsAccountResult();
}