methodDescriptor top-level property
Implementation
final methodDescriptor =
XRPCMethodDescriptor<EmptyData, SetDeleteSetInput, EmptyData>(
nsid: NSID.parse('tools.ozone.set.deleteSet'),
kind: XRPCMethodKind.procedure,
inputFromJson: (json) => const SetDeleteSetInputConverter().fromJson(
json.cast<String, dynamic>(),
),
inputToJson: const SetDeleteSetInputConverter().toJson,
errors: const ['SetNotFound'],
);