parseResetToDefault static method

Future<ScpResponseResetToDefault> parseResetToDefault(
  1. dynamic response,
  2. String password
)

Implementation

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