isPositive property

bool get isPositive

Implementation

bool get isPositive {
  if (amount.isEmpty == true) return false;
  return double.parse(amount) > 0;
}