empty static method

Product empty()

Implementation

static Product empty() => Product(
      id: '',
      name: '',
      description: '',
      price: 0.0,
      type: ProductType.other,
      listingType: ListingType.sell,
      sellerId: '',
      location: null,
      createdAt: DateTime.now(),
      images: [],
      isAvailable: false,
    );