CreateEcosystemResponse constructor

CreateEcosystemResponse({
  1. Ecosystem? ecosystem,
  2. AccountProfile? profile,
  3. ConfirmationMethod? confirmationMethod,
})

Implementation

factory CreateEcosystemResponse({
  Ecosystem? ecosystem,
  $8.AccountProfile? profile,
  $8.ConfirmationMethod? confirmationMethod,
}) {
  final $result = create();
  if (ecosystem != null) {
    $result.ecosystem = ecosystem;
  }
  if (profile != null) {
    $result.profile = profile;
  }
  if (confirmationMethod != null) {
    $result.confirmationMethod = confirmationMethod;
  }
  return $result;
}