verify static method

void verify(
  1. String? doctype
)

Implementation

static void verify(String? doctype) {
  if (doctype == null || doctype.isEmpty) throw EmptyDoctypeError();
}