getProfile method

Future<Profile> getProfile(
  1. String profileToken
)

If the profile token is already known, a profile can be fetched through the getProfile command.

Implementation

Future<m1.Profile> getProfile(String profileToken) async =>
    _mediaSupportLevel == MediaSupportLevel.two
        ? throw NotSupportedException()
        : media1.getProfile(profileToken);