estimateSize function

int estimateSize(
  1. Object obj
)

Implementation

int estimateSize(Object obj) {
  final str = jsonEncode(obj);
  return utf8.encode(str).length;
}