operator - method Null safety

int operator -(
  1. dynamic other
)

Implementation

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