getAudibleProfile property

Future<AudibleProfile?> getAudibleProfile

This method allows you to get the AudibleProfile without having to create a stream

Implementation

static Future<AudibleProfile?> get getAudibleProfile async {
  String temp = await _channel.invokeMethod(Constants.GET_AUDIBLE_PROFILE);
  return EnumToString.fromString<AudibleProfile>(AudibleProfile.values, temp);
}