sign property
String
get
sign
Implementation
String get sign {
if (this > 0) return 'Positive';
if (this < 0) return 'Negative';
return 'Zero';
}
String get sign {
if (this > 0) return 'Positive';
if (this < 0) return 'Negative';
return 'Zero';
}