operator > method
Implementation
bool? operator >(T other) {
final shadow = this;
if (shadow != null) {
return shadow > other;
} else {
return null;
}
}
bool? operator >(T other) {
final shadow = this;
if (shadow != null) {
return shadow > other;
} else {
return null;
}
}