submitPlcOperation method

Future<XRPCResponse<EmptyData>> submitPlcOperation({
  1. required Map<String, dynamic> operation,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Validates a PLC operation to ensure that it doesn't violate a service's constraints or get the identity into a bad state, then submits it to the PLC registry

Implementation

Future<XRPCResponse<EmptyData>> submitPlcOperation({
  required Map<String, dynamic> operation,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoIdentitySubmitPlcOperation(
  operation: operation,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);