getProduct method

Future<Map<String, dynamic>?> getProduct(
  1. String sku
)

Get product by SKU.

Retrieves detailed information about a specific product using its SKU.

sku the product's SKU (Stock Keeping Unit)

Returns a map containing the product details, or null if not found.

Implementation

Future<Map<String, dynamic>?> getProduct(String sku) {
  throw UnimplementedError('getProduct() has not been implemented.');
}