head static method

Component head({
  1. List<HeadElementData>? elements,
})

Inject elements into the document head using data objects

Implementation

static Component head({List<HeadElementData>? elements}) {
  throw UnsupportedError(
    'Cannot use DocumentHelper without a platform implementation',
  );
}