stringLength static method

void stringLength(
  1. String name,
  2. String string
)

Throws a StickerPackException when the string exceeds 128 characters

Implementation

static void stringLength(String name, String string) {
  if (string.length > 128) {
    throw StickerPackException('$name can only be up to 128 characters');
  }
}