totalOrSize property

int get totalOrSize

Implementation

int get totalOrSize {
  if (value is List<dynamic>) return total ?? value.length;
  return 0;
}