top method

Future<GraphQuery> top(
  1. int top
)

Implementation

Future<GraphQuery> top(
  int top,
) async {
  var GraphQuery = await this;
  return GraphQuery.top(
    top,
  );
}