App constructor

App({
  1. String? name,
  2. String? type,
  3. String? entrypoint,
})

Implementation

factory App({
  $core.String? name,
  $core.String? type,
  $core.String? entrypoint,
}) {
  final $result = create();
  if (name != null) {
    $result.name = name;
  }
  if (type != null) {
    $result.type = type;
  }
  if (entrypoint != null) {
    $result.entrypoint = entrypoint;
  }
  return $result;
}