parseControlResponse static method

Future<ScpResponseControl> parseControlResponse(
  1. dynamic response,
  2. String password
)

Implementation

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