getMutes method

Future<XRPCResponse<Mutes>> getMutes({
  1. int? limit,
  2. String? cursor,
})

Implementation

Future<core.XRPCResponse<Mutes>> getMutes({
  int? limit,
  String? cursor,
}) async =>
    // ignore: deprecated_member_use_from_same_package
    await findMutes(
      limit: limit,
      cursor: cursor,
    );