reportStringValue method

  1. @override
void reportStringValue(
  1. String? valueName,
  2. String? value, {
  3. Platform? platform,
})
override

Reports a String 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 or empty the event will not be reported.

Example:

import 'package:dynatrace_flutter_plugin/dynatrace_flutter_plugin.dart';

final myAction = Dynatrace().enterAction('MyAction');
myAction.reportStringValue('MyStringValue', 'String');
myAction.leaveAction();

For more information, see Dynatrace documentation.

Implementation

@override
void reportStringValue(
  String? valueName,
  String? value, {
  Platform? platform,
}) {
  return;
}