Skip to content

Instantly share code, notes, and snippets.

View libindev's full-sized avatar
🎯
Focusing

Libin Mathew libindev

🎯
Focusing
  • India
View GitHub Profile
@libindev
libindev / inherited_widgets.dart
Created January 17, 2020 06:00
InhertiedWigets
import 'package:collection/collection.dart';
import 'package:flutter/material.dart';
class ShoppingCartInfo {
final List<int> productIds;
ShoppingCartInfo({this.productIds});
}