getInviteByPhoneStatus method

  1. @override
Future<String> getInviteByPhoneStatus()

Get the status of the invitation by phone.
If the function succeeds, the method returns the PhoneStatus of the invitation by phone.

Implementation

@override
Future<String> getInviteByPhoneStatus() async {
  return await methodChannel
      .invokeMethod<String>('getInviteByPhoneStatus')
      .then<String>((String? value) => value ?? "");
}