isSubKind method

  1. @override
bool isSubKind(
  1. Kind other, {
  2. bool andNotEqual = true,
})
override

Tells whether the argument is instance of Kind<T> and dartType values are different.

Implementation

@override
bool isSubKind(Kind other, {bool andNotEqual = true}) {
  return wrappedKind.isSubKind(other, andNotEqual: andNotEqual);
}