count property

int? count

Implementation

int? get count {
  if (data != null && data!.length == 1) return data!.first.count;
  return null;
}