orderStatus static method

int orderStatus()

Implementation

static int orderStatus() {
  return [
            'Pending',
            'Processing',
            'Shipped',
            'Delivered',
            'Cancelled',
          ][_random.nextInt(5)]
          as int? ??
      0;
}