operator - method

DoubleField operator -(
  1. dynamic other
)

Get new DoubleField of this value - other

other may be of the following:

DoubleField - IntField - NumField - double - int

Implementation

DoubleField operator -(dynamic other) => _getMathOperationQuery('-', other);