isa property

  1. @override
Class? isa
override

This isa block in iOS, but it's meaningless for a block created by Dart function.

Implementation

@override
Class? get isa {
  if (function != null) {
    throw 'Block created by Dart';
  }
  return super.isa;
}