getTimeline method

Future<XRPCResponse<Feed>> getTimeline({
  1. String? algorithm,
  2. int? limit,
  3. String? cursor,
})

Implementation

Future<core.XRPCResponse<Feed>> getTimeline({
  String? algorithm,
  int? limit,
  String? cursor,
}) async =>
    // ignore: deprecated_member_use_from_same_package
    await findTimeline(
      algorithm: algorithm,
      limit: limit,
      cursor: cursor,
    );