put method

Future<XRPCResponse<RepoPutRecordOutput>> put({
  1. required String subject,
  2. required String handle,
  3. required String displayName,
  4. DateTime? createdAt,
  5. required String rkey,
  6. bool? validate,
  7. String? swapRecord,
  8. String? swapCommit,
  9. Map<String, String>? $headers,
  10. Map<String, String>? $unknown,
})

Implementation

Future<XRPCResponse<RepoPutRecordOutput>> put({
  required String subject,
  required String handle,
  required String displayName,
  DateTime? createdAt,
  required String rkey,
  bool? validate,
  String? swapRecord,
  String? swapCommit,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoRepoPutRecord(
  repo: _ctx.repo,
  collection: ids.appBskyGraphVerification,
  rkey: rkey,
  validate: validate,
  record: {
    ...?$unknown,
    'subject': subject,
    'handle': handle,
    'displayName': displayName,
    'createdAt': iso8601(createdAt),
  },
  swapRecord: swapRecord,
  swapCommit: swapCommit,
  $ctx: _ctx,
  $headers: $headers,
);