toArgMap method

Map<String, Object?> toArgMap()

Implementation

Map<String, Object?> toArgMap() => {
  'name': name.toTfJson(),
  if (exactMatch != null) 'exact_match': exactMatch!.toTfJson(),
  if (regexMatch != null) 'regex_match': regexMatch!.toTfJson(),
  if (presentMatch != null) 'present_match': presentMatch!.toTfJson(),
};