|
| 1 | +import 'package:flutter/material.dart'; |
| 2 | + |
| 3 | +class Bookstore { |
| 4 | + const Bookstore({ |
| 5 | + @required this.id, |
| 6 | + @required this.storeName, |
| 7 | + @required this.location, |
| 8 | + @required this.webUrl, |
| 9 | + }); |
| 10 | + final int id; |
| 11 | + final String storeName; |
| 12 | + final String location; |
| 13 | + final String webUrl; |
| 14 | +} |
| 15 | + |
| 16 | +abstract class ContentControl { |
| 17 | + static const List<Bookstore> Bookstores = [ |
| 18 | + Bookstore(id: 0, storeName: "A Cultural Exchange", location: "Cleveland, Ohio", webUrl: "https://www.aculturalexchange.org"), |
| 19 | + Bookstore(id: 1, storeName: "Aframerican Book Store", location: "Omaha, Nebraska", webUrl: "http://aframericanbookstore.com"), |
| 20 | + Bookstore(id: 2, storeName: "Afriware Books, Co", location: "Maywood, Illinois", webUrl: "https://www.afriwarebooks.com"), |
| 21 | + Bookstore(id: 3, storeName: "Akoma Novelties & Books", location: "Evansville, Indiana", webUrl: "https://www.akomabooks.com"), |
| 22 | + Bookstore(id: 4, storeName: "Alkebulan Ujaama Book Store", location: "Columbus, Ohio", webUrl: ""), |
| 23 | + Bookstore(id: 5, storeName: "Ashay by the Bay", location: "Vallejo, California", webUrl: "https://ashaybythebay.com"), |
| 24 | + Bookstore(id: 6, storeName: "Best Richardson African Diaspora Literature & Culture Museum", location: "Tampa, Florida", webUrl: "https://www.bradlcmuseum.com"), |
| 25 | + Bookstore(id: 7, storeName: "Beyond Barcodes Bookstore", location: "Kokomo, Indiana", webUrl: ""), |
| 26 | + Bookstore(id: 8, storeName: "Black Dot Cultural Center", location: "Lithonia, Georgia", webUrl: "https://www.blackdotcc.com"), |
| 27 | + Bookstore(id: 9, storeName: "Black Pearl Books", location: "Austin, Texas", webUrl: "https://blackpearlbookstore.com"), |
| 28 | + Bookstore(id: 10, storeName: "Black Stone Bookstore & Cultural Center", location: "Ypsilanti, MI", webUrl: "https://www.blackstonebookstore.com"), |
| 29 | + Bookstore(id: 11, storeName: "Black World Books", location: "Killeen, Texas", webUrl: "https://blackworldbooks.org/"), |
| 30 | + Bookstore(id: 12, storeName: "Bliss Books & Wine", location: "Kansas City, Missouri", webUrl: "https://bliss-books-wine.business.site"), |
| 31 | + Bookstore(id: 13, storeName: "Books & Stuff", location: "Philadelphia, Pennsylvania", webUrl: "https://www.booksandstuff.info"), |
| 32 | + Bookstore(id: 14, storeName: "Books and Crannies", location: "Martinsville, Virginia", webUrl: "https://www.booksandcranniesva.com"), |
| 33 | + Bookstore(id: 15, storeName: "Brave + Kind Bookshop", location: "Decatur, Georgia", webUrl: "https://www.braveandkindbooks.com"), |
| 34 | + Bookstore(id: 16, storeName: "Burgundy Books", location: "Old Saybrook, Connecticut", webUrl: "https://burgundybooks.com"), |
| 35 | + Bookstore(id: 17, storeName: "Carol’s Books", location: "Sacramento, California", webUrl: "https://carolsbookstore.com"), |
| 36 | + Bookstore(id: 18, storeName: "Dare Books", location: "Longwood, Florida", webUrl: "https://darebooks.com"), |
| 37 | + Bookstore(id: 19, storeName: "Detroit Book City", location: "Southfield, Michigan", webUrl: "https://www.detroitbookcity.com"), |
| 38 | + Bookstore(id: 20, storeName: "Elizabeth’s Bookshop & Writing Centre", location: "Akron, Ohio", webUrl: ""), |
| 39 | + Bookstore(id: 21, storeName: "Enda’s Booktique", location: "Duncanville, Texas", webUrl: "https://endasbooktique.com"), |
| 40 | + Bookstore(id: 22, storeName: "Eso Won Bookstore", location: "Los Angeles, California", webUrl: "https://www.esowonbookstore.com"), |
| 41 | + Bookstore(id: 23, storeName: "Everyone’s Place", location: "Baltimore, Maryland", webUrl: ""), |
| 42 | + Bookstore(id: 24, storeName: "EyeSeeMe", location: "University City, Missouri", webUrl: "https://www.eyeseeme.com"), |
| 43 | + Bookstore(id: 25, storeName: "Frontline Bookstore", location: "Chicago, Illinois", webUrl: ""), |
| 44 | + Bookstore(id: 26, storeName: "Frugal Bookstore", location: "Boston, Massachusetts", webUrl: "https://frugalbookstore.net"), |
| 45 | + Bookstore(id: 27, storeName: "Harambee Books and Artworks", location: "Alexandria, Virginia", webUrl: "https://harambeebooks.org"), |
| 46 | + Bookstore(id: 28, storeName: "House of Consciousness", location: "Norfolk, Virginia", webUrl: "https://www.hocbookstore.com"), |
| 47 | + Bookstore(id: 29, storeName: "La Unique African American Books & Cultural Center", location: "Camden, NJ", webUrl: "http://www.launiquebooks.net"), |
| 48 | + Bookstore(id: 30, storeName: "Loyalty Bookstore", location: "Washington, D.C.", webUrl: "https://www.loyaltybookstores.com"), |
| 49 | + Bookstore(id: 31, storeName: "Mahogany Books", location: "West Palm Beach, Florida", webUrl: "https://www.mahoganybooks.com"), |
| 50 | + Bookstore(id: 32, storeName: "Marcus Books", location: "Oakland, California", webUrl: "https://tapmybio.com/marcusbook"), |
| 51 | + Bookstore(id: 33, storeName: "Medu Bookstore", location: "Atlanta, Georgia", webUrl: "https://www.medubookstore.com"), |
| 52 | + Bookstore(id: 34, storeName: "Mocha Books", location: "Tulsa, Oklahoma", webUrl: "https://www.readwithmochabooks.com"), |
| 53 | + Bookstore(id: 35, storeName: "Nandi’s Knowledge Cafe", location: "Highland Park, Michigan", webUrl: "http://nandisknowledgecafe.com"), |
| 54 | + Bookstore(id: 36, storeName: "NuBian Books", location: "Morrow, Georgia", webUrl: "https://www.houseofnubian.com"), |
| 55 | + Bookstore(id: 37, storeName: "Olive Tree Books N Voices", location: "Springfield, Massachusetts", webUrl: "http://olivetreebooksonline.com"), |
| 56 | + Bookstore(id: 38, storeName: "Positive Vibes", location: "Virginia Beach, Virginia", webUrl: "https://www.positivevibesva.com"), |
| 57 | + Bookstore(id: 39, storeName: "Pyramid Art Books & Custom Framing", location: "Little Rock, Arkansas", webUrl: ""), |
| 58 | + Bookstore(id: 40, storeName: "Semicolon Bookstore & Gallery", location: "Chicago, Illinois", webUrl: "http://www.semicolonchi.com"), |
| 59 | + Bookstore(id: 41, storeName: "Shades of Afrika", location: "Long Beach, California", webUrl: "https://shadesofafrika.com"), |
| 60 | + Bookstore(id: 42, storeName: "Source of Knowledge Book Store", location: "Newark, New Jersey", webUrl: ""), |
| 61 | + Bookstore(id: 43, storeName: "The Brain Lair Bookstore", location: "South Bend, Indiana", webUrl: "https://www.brainlairbooks.com"), |
| 62 | + Bookstore(id: 44, storeName: "The Dock Bookshop", location: "Fort Worth, Texas", webUrl: "https://www.thedockbookshop.com"), |
| 63 | + Bookstore(id: 45, storeName: "The Listening Tree", location: "Candler-McAfee, Georgia", webUrl: "https://listeningtreebooks.com"), |
| 64 | + Bookstore(id: 46, storeName: "The Lit. Bar", location: "Bronx, New York", webUrl: "http://www.thelitbar.com"), |
| 65 | + Bookstore(id: 48, storeName: "Cafe con Libros", location: "Brooklyn, New York", webUrl: "https://www.cafeconlibrosbk.com"), |
| 66 | + Bookstore(id: 49, storeName: "The Tiny Bookstore", location: "Pittsburgh, Pennsylvania", webUrl: "https://tinybookspgh.com"), |
| 67 | + Bookstore(id: 50, storeName: "The Underground Bookstore", location: "Chicago, Illinois", webUrl: ""), |
| 68 | + Bookstore(id: 51, storeName: "Turning Page Bookshop", location: "Goose Creek, South Carolina", webUrl: "https://turningpagebookshop.com"), |
| 69 | + Bookstore(id: 52, storeName: "Willa’s Books and Vinyl", location: "Kansas City, Missouri", webUrl: "https://www.willasbookskc.com") |
| 70 | + ]; |
| 71 | +} |
0 commit comments