Skip to content

Instantly share code, notes, and snippets.

View zaprogrammer's full-sized avatar
💥

Ahmed zaprogrammer

💥
View GitHub Profile
import 'dart:collection';
import 'package:flutter/material.dart';
class Item {
final String id;
String listId;
final String title;
Item({this.id, this.listId, this.title});
}