operator / method Null safety
- dynamic other
Implementation
int operator /(other) => isNotNull
? value! ~/ other!
: throw EmpirePropertyNullValueException(
StackTrace.current, propertyName, runtimeType);
int operator /(other) => isNotNull
? value! ~/ other!
: throw EmpirePropertyNullValueException(
StackTrace.current, propertyName, runtimeType);