copyWith method

GreaterThan copyWith({
  1. num? compare,
})

Implementation

GreaterThan copyWith({num? compare}) {
  return GreaterThan(compare: compare ?? this.compare);
}