upsertSet method

Future<XRPCResponse<SetView>> upsertSet({
  1. required String name,
  2. String? description,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Create or update set metadata

Implementation

Future<XRPCResponse<SetView>> upsertSet({
  required String name,
  String? description,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneSetUpsertSet(
  name: name,
  description: description,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);