parseMeasureResponse static method

Future<ScpResponseMeasure> parseMeasureResponse(
  1. dynamic response,
  2. String password
)

Implementation

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