Container constructor

Container({
  1. String? key,
  2. String? uri,
  3. String? framework,
  4. String? description,
  5. Timestamp? eol,
})

Implementation

factory Container({
  $core.String? key,
  $core.String? uri,
  $core.String? framework,
  $core.String? description,
  $52.Timestamp? eol,
}) {
  final $result = create();
  if (key != null) {
    $result.key = key;
  }
  if (uri != null) {
    $result.uri = uri;
  }
  if (framework != null) {
    $result.framework = framework;
  }
  if (description != null) {
    $result.description = description;
  }
  if (eol != null) {
    $result.eol = eol;
  }
  return $result;
}