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