call method

bool call(
  1. T a,
  2. T b
)

Computes a || b.

Implementation

bool call(T a, T b) => (a as dynamic) || (b as dynamic);