downloadProfile method

Future<Profile> downloadProfile(
  1. String profileId
)

Downloads a specific provisioning profile which is defined by the profileId

Implementation

Future<Profile> downloadProfile(String profileId) async {
  return _provisioning.downloadProfile(profileId);
}