parseNvcnResponse static method

Future<ScpResponseFetchNvcn> parseNvcnResponse(
  1. dynamic response
)

Implementation

static Future<ScpResponseFetchNvcn> parseNvcnResponse(var response) async {
  return await ScpResponseFetchNvcn.fromJson(
    jsonDecode(response),
  );
}