totalVbucks property

int totalVbucks

get total vbucks of profile

Implementation

int get totalVbucks {
  confirmInitialized();

  return vbucksBreakdown.map((e) => e.quantity).reduce((a, b) => a + b);
}