isEnabled property

bool get isEnabled

Indicates whether the current value is TrackMediaDirection.sendRecv.

Implementation

bool get isEnabled {
  switch (this) {
    case TrackMediaDirection.sendRecv:
      return true;
    case TrackMediaDirection.sendOnly:
    case TrackMediaDirection.recvOnly:
    case TrackMediaDirection.inactive:
      return false;
  }
}