equalTo method
Indicates whether the given margin is equal to this Margin. @param {number} t top. @param {number} r right. @param {number} b bottom. @param {number} l left. @return {boolean} True if the two Margins have identical Top and Right and Bottom and Left values, false otherwise. @see #equals
Implementation
_i2.bool equalTo(
  _i2.num t,
  _i2.num r,
  _i2.num b,
  _i2.num l,
) =>
    _i4.callMethod(
      this,
      'equalTo',
      [
        t,
        r,
        b,
        l,
      ],
    );