oldest method

List oldest([
  1. String key = 'id'
])

The oldest methods allow you to easily order results by id. By default, the result will be ordered by the table's id column. Or, you may pass the column name that you wish to sort by:

Example:

oldest(list)

Implementation

List<dynamic> oldest([String key = 'id']) => FxList.oldest(this, key);