parseRestartDeviceResponse static method

Future<ScpResponseRestart> parseRestartDeviceResponse(
  1. dynamic response,
  2. String password
)

Implementation

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