GetAppContentResponse constructor

GetAppContentResponse({
  1. String? blobPath,
  2. String? entrypoint,
  3. AppType? appType,
  4. bool? public,
})

Implementation

factory GetAppContentResponse({
  $core.String? blobPath,
  $core.String? entrypoint,
  AppType? appType,
  $core.bool? public,
}) {
  final $result = create();
  if (blobPath != null) {
    $result.blobPath = blobPath;
  }
  if (entrypoint != null) {
    $result.entrypoint = entrypoint;
  }
  if (appType != null) {
    $result.appType = appType;
  }
  if (public != null) {
    $result.public = public;
  }
  return $result;
}