getRecords method

Future<Result<List<RecordModel>>> getRecords({
  1. int skip = 0,
  2. int limit = 10,
})

Implementation

Future<Result<List<RecordModel>>> getRecords({
  int skip = 0,
  int limit = 10,
}) async {
  return await _sdk.getRecords(skip: skip, limit: limit);
}