isKind method

  1. @override
bool isKind({
  1. required Class of,
})
override

Returns a Boolean value that indicates whether the receiver is an instance of given class or an instance of any class that inherits from that class.

Implementation

@override
bool isKind({required Class of}) {
  return performSync(SEL('isKindOfClass:'), args: [of]);
}