applyWrites method

Future<XRPCResponse<EmptyData>> applyWrites({
  1. required List<BatchAction> actions,
  2. bool? validate,
  3. String? swapCommitCid,
})

Implementation

Future<core.XRPCResponse<core.EmptyData>> applyWrites({
  required List<BatchAction> actions,
  bool? validate,
  String? swapCommitCid,
}) async =>
    // ignore: deprecated_member_use_from_same_package
    await updateBulk(
      actions: actions,
      validate: validate,
      swapCommitCid: swapCommitCid,
    );