parseSetPasswordResponse static method

Future<ScpResponseSetPassword> parseSetPasswordResponse(
  1. dynamic response,
  2. String password
)

Implementation

static Future<ScpResponseSetPassword> parseSetPasswordResponse(
    var response, String password) async {
  return await ScpResponseSetPassword.fromJson(
    jsonDecode(response),
    password,
  );
}