implementsInterface<type, ifac> static method

bool implementsInterface<type, ifac>()
Check if a type implements an interface Sub-class type. Super-interface type.

Implementation

static bool implementsInterface<type, ifac>() =>
    _DummyClass<type>() is _DummyClass<ifac>;