getOrderStatus method
Get order status
Implementation
Future<String> getOrderStatus(String orderId) async {
try {
final order = await getOrder(orderId);
return order.status ?? '';
} catch (e) {
throw Exception('Failed to get order status: $e');
}
}