getAccountHistory method
Get account history, e.g. log of updated email addresses or other identity information.
Implementation
Future<XRPCResponse<HostingGetAccountHistoryOutput>> getAccountHistory({
required String did,
List<HostingGetAccountHistoryEvents>? events,
String? cursor,
int? limit,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneHostingGetAccountHistory(
did: did,
events: events,
cursor: cursor,
limit: limit,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);