parseResponse method

Map<String, dynamic> parseResponse(
  1. String response
)

Parsing of the results returned by the interface.

Implementation

Map<String, dynamic> parseResponse(String response) {
  return jsonDecode(response);
}