toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (boolValue != null) 'boolValue': boolValue!,
      if (distributionValue != null) 'distributionValue': distributionValue!,
      if (doubleValue != null) 'doubleValue': doubleValue!,
      if (int64Value != null) 'int64Value': int64Value!,
      if (stringValue != null) 'stringValue': stringValue!,
    };