isOversized static method

bool isOversized(
  1. String json
)

Check if a single event JSON string exceeds the size limit.

Implementation

static bool isOversized(String json) {
  return utf8.encode(json).length > maxSingleEventBytes;
}