isPositive property

bool isPositive

Implementation

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