static int? resolveOrder(String orderValue) { if (orderValue == 'initial' || orderValue == 'unset') { return 0; } return int.tryParse(orderValue); }