orderString static method

String orderString(
  1. PcoPeoplePlatformNotificationOrder order, {
  2. bool reverse = false,
})

Implementation

static String orderString(PcoPeoplePlatformNotificationOrder order,
        {bool reverse = false}) =>
    (reverse ? '-' : '') + _orderMap[order]!;