isMember method

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

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

Implementation

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