CreateAPIApplicationResponse constructor

CreateAPIApplicationResponse({
  1. String? clientId,
  2. String? clientSecret,
})

Implementation

factory CreateAPIApplicationResponse({
  $core.String? clientId,
  $core.String? clientSecret,
}) {
  final result = create();
  if (clientId != null) result.clientId = clientId;
  if (clientSecret != null) result.clientSecret = clientSecret;
  return result;
}