StopMappingSessionResponse constructor

StopMappingSessionResponse({
  1. String? packageId,
  2. String? version,
})

Implementation

factory StopMappingSessionResponse({
  $core.String? packageId,
  $core.String? version,
}) {
  final $result = create();
  if (packageId != null) {
    $result.packageId = packageId;
  }
  if (version != null) {
    $result.version = version;
  }
  return $result;
}