AnalyticsValue constructor

AnalyticsValue({
  1. String? stringValue,
  2. Int64? intValue,
  3. double? floatValue,
  4. double? doubleValue,
})

Implementation

factory AnalyticsValue({
  $core.String? stringValue,
  $fixnum.Int64? intValue,
  $core.double? floatValue,
  $core.double? doubleValue,
}) {
  final $result = create();
  if (stringValue != null) {
    $result.stringValue = stringValue;
  }
  if (intValue != null) {
    $result.intValue = intValue;
  }
  if (floatValue != null) {
    $result.floatValue = floatValue;
  }
  if (doubleValue != null) {
    $result.doubleValue = doubleValue;
  }
  return $result;
}