getMissionProfile method
Returns a mission profile.
May throw DependencyException.
May throw InvalidParameterException.
May throw ResourceNotFoundException.
Parameter missionProfileId :
UUID of a mission profile.
Implementation
Future<GetMissionProfileResponse> getMissionProfile({
required String missionProfileId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/missionprofile/${Uri.encodeComponent(missionProfileId)}',
exceptionFnMap: _exceptionFns,
);
return GetMissionProfileResponse.fromJson(response);
}