ListAppKeysRequest constructor

ListAppKeysRequest({
  1. ListQuery? query,
  2. String? appId,
  3. String? projectId,
})

Implementation

factory ListAppKeysRequest({
  $7.ListQuery? query,
  $core.String? appId,
  $core.String? projectId,
}) {
  final _result = create();
  if (query != null) {
    _result.query = query;
  }
  if (appId != null) {
    _result.appId = appId;
  }
  if (projectId != null) {
    _result.projectId = projectId;
  }
  return _result;
}