style static method

HeadTag style(
  1. String content, {
  2. Map<String, Object?> props = const {},
})

Creates a style head tag descriptor.

Implementation

static HeadTag style(
  String content, {
  Map<String, Object?> props = const {},
}) {
  return HeadTag('style', props: props, content: content);
}