reportIntValue method
Reports an int value with a specified valueName. If the action is already closed the event will not be reported.
If valueName is null or empty the event will not be reported. If value is null the event will not be reported.
Example:
import 'package:dynatrace_flutter_plugin/dynatrace_flutter_plugin.dart';
final myAction = Dynatrace().enterAction('MyAction');
myAction.reportIntValue('MyIntValue', 42);
myAction.leaveAction();
For more information, see Dynatrace documentation.
Implementation
@override
void reportIntValue(String? valueName, int? value, {Platform? platform}) {
return;
}