EntityId constructor

EntityId({
  1. String? type,
  2. String? id,
})

Implementation

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