getArtist static method

Future<Artist> getArtist(
  1. String artistId
)

Implementation

static Future<Artist> getArtist(String artistId) async {
  final jsonString =
      await _channel.invokeMethod<String>('getArtist', {'id': artistId});

  if (jsonString == null) {
    throw PlatformException(code: 'NULL_RESPONSE');
  }

  final jsonObject = json.decode(jsonString) as Map<dynamic, dynamic>;
  return Artist.fromJson(jsonObject);
}