toArgMap method

Map<String, Object?> toArgMap()

Implementation

Map<String, Object?> toArgMap() => {
  if (name != null) 'name': name!.toTfJson(),
  if (path != null) 'path': path!.toTfJson(),
  if (ttl != null) 'ttl': [ttl!.toArgMap()],
};