enterAction method

  1. @override
DynatraceAction enterAction(
  1. String? actionName, {
  2. Platform? platform,
})
override

Enters a (child) Action with a specified actionName on this Action. If the given actionName is null or an empty string, no reporting will happen on that RootAction.

Implementation

@override
DynatraceAction enterAction(String? actionName, {Platform? platform}) {
  return DynatraceNullAction();
}