phase3: nullfix arg-bang handler (argument_type/invalid_assignment). 872 -> 621
This commit is contained in:
@@ -24,9 +24,9 @@ class ProductDetailPage extends StatelessWidget {
|
||||
return ResponsiveBuilder(
|
||||
builder: (context, sizingInformation) =>
|
||||
ScreenTypeLayout(
|
||||
mobile: MobileProductDetailPage(business: business, product: product,),
|
||||
tablet: DesktopProductDetailPage(business: business, product: product,),
|
||||
desktop: DesktopProductDetailPage(business: business, product: product,),
|
||||
mobile: MobileProductDetailPage(business: business!, product: product!,),
|
||||
tablet: DesktopProductDetailPage(business: business!, product: product!,),
|
||||
desktop: DesktopProductDetailPage(business: business!, product: product!,),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user