handleUnregisterSuperProperty method

void handleUnregisterSuperProperty(
  1. MethodCall call
)

Implementation

void handleUnregisterSuperProperty(MethodCall call) {
  Map<Object?, Object?> args = call.arguments as Map<Object?, Object?>;
  String propertyName = args['propertyName'] as String;
  unregister(propertyName);
}