total property

int? get total

Implementation

int? get total {
  if (this.extra case {"total": int n}) return n;
  return null;
}