onMutationReuse method

  1. @override
void onMutationReuse(
  1. Mutation query
)
override

Called when a mutation is found in the cache and re-used

Implementation

@override
void onMutationReuse(
  Mutation<dynamic, dynamic> query,
) {
  if (!mutationReuse) return;
  _log(
    _AnsiColors("[MUTATION REUSE]", colors: colors).bold.blue.toString(),
    key: query.key,
  );
}