AddAPIAppResponse constructor

AddAPIAppResponse({
  1. String? appId,
  2. ObjectDetails? details,
  3. String? clientId,
  4. String? clientSecret,
})

Implementation

factory AddAPIAppResponse({
  $core.String? appId,
  $7.ObjectDetails? details,
  $core.String? clientId,
  $core.String? clientSecret,
}) {
  final _result = create();
  if (appId != null) {
    _result.appId = appId;
  }
  if (details != null) {
    _result.details = details;
  }
  if (clientId != null) {
    _result.clientId = clientId;
  }
  if (clientSecret != null) {
    _result.clientSecret = clientSecret;
  }
  return _result;
}