ListAppKeysRequest constructor

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

Implementation

factory ListAppKeysRequest({
  $2.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;
}