operator % method Null safety

double operator %(
  1. dynamic other
)

Implementation

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