CreateAPIKeyResponse constructor

CreateAPIKeyResponse({
  1. APIKey? apiKey,
})

Implementation

factory CreateAPIKeyResponse({
  $2.APIKey? apiKey,
}) {
  final _result = create();
  if (apiKey != null) {
    _result.apiKey = apiKey;
  }
  return _result;
}