tryParse static method

IndexOrder? tryParse(
  1. String? order
)

Returns the IndexOrder constant corresponding to the specified order.

Implementation

static IndexOrder? tryParse(String? order) => _values[order];