operator ~/ method

int? operator ~/(
  1. num other
)

Implementation

int? operator ~/(num other) {
  if (value != null) {
    return value! ~/ other;
  }
  return null;
}