stringLength static method
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');
}
}