toArgMap method
Implementation
Map<String, Object?> toArgMap() => {
if (aggregationInterval != null)
'aggregation_interval': aggregationInterval!.toTfJson(),
if (flowSampling != null) 'flow_sampling': flowSampling!.toTfJson(),
if (metadata != null) 'metadata': metadata!.toTfJson(),
if (metadataFields != null) 'metadata_fields': metadataFields!.toTfJson(),
if (filterExpr != null) 'filter_expr': filterExpr!.toTfJson(),
};