operator / method Null safety

int operator /(
  1. dynamic other
)

Implementation

int operator /(other) => isNotNull
    ? value! ~/ other!
    : throw EmpirePropertyNullValueException(
        StackTrace.current, propertyName, runtimeType);