description static method

String? description(
  1. Map response
)

Return field description from iTunes results.

Implementation

static String? description(Map response) {
  String? value;
  try {
    value = response['results'][0]['description'];
  } catch (e) {
    print('upgrader.ITunesResults.description: $e');
  }
  return value;
}