genCid static method

String genCid(
  1. ContentsType contentType
)

Implementation

static String genCid(ContentsType contentType) {
  String mid = "${contentType.name}=";
  mid += const Uuid().v4();
  return mid;
}