isIE property

bool isIE

Determines if the current device is running Internet Explorer.

Implementation

bool get isIE {
  _isIE = !isOpera && value.contains('Trident/', 0);
  return _isIE;
}