contentBytes static method

TemplateEntry<Uint8List> contentBytes(
  1. String directory,
  2. String name,
  3. String type,
  4. Uint8List bytes,
)

Constructs with content as bytes.

Implementation

static TemplateEntry<Uint8List> contentBytes(
        String directory, String name, String type, Uint8List bytes) =>
    TemplateEntry<Uint8List>(directory, name, type, bytes);