toArgMap method

Map<String, Object?> toArgMap()

Implementation

Map<String, Object?> toArgMap() => {
  if (httpHeaderName != null) 'http_header_name': httpHeaderName!.toTfJson(),
  if (minimumRingSize != null)
    'minimum_ring_size': minimumRingSize!.toTfJson(),
  if (httpCookie != null) 'http_cookie': [httpCookie!.toArgMap()],
};