onCall abstract method

Object? onCall(
  1. T instance,
  2. String methodName,
  3. Map<String, dynamic> parameters,
  4. TypeReflection? returnType,
)

Calls made through a ClassProxy will be intercepted by onCall implementation.

Implementation

Object? onCall(T instance, String methodName, Map<String, dynamic> parameters,
    TypeReflection? returnType);