order property

int order
final

The order to show the tip, lower order higher priority.

Implement:

tipList.sort((a, b) => a.order.compareTo(b.order))

Default set to 0.

Implementation

final int order;