resetPassword method

Future<void> resetPassword(
  1. String password,
  2. String token
)

Implementation

Future<void> resetPassword(String password, String token) async {
  await _methodChannel.invokeMapMethod(
      'resetPassword', {'password': password, 'token': token});
}