reportDoubleValue abstract method

void reportDoubleValue(
  1. String? valueName,
  2. double? value, {
  3. Platform? platform,
})
inherited

Reports a double value with a specified valueName. Be aware that those methods are helper methods and are internally attaching the value to the latest opened action. If there is no open action, the value will not be reported.

Example:

import 'package:dynatrace_flutter_plugin/dynatrace_flutter_plugin.dart';

Dynatrace().reportDoubleValue('MyDoubleValue', 42.42);

For more information, see Dynatrace documentation.

Implementation

void reportDoubleValue(
  String? valueName,
  double? value, {
  Platform? platform,
});