covariant method

  1. @override
bool covariant(
  1. dynamic x
)
override

Assert that JavaScript's x is the proper type represented by this Type.

Implementation

@override
bool covariant(dynamic x) {
  return _type != null ? _type!.covariant(x) : false;
}