• This project
    • Loading...
  • Sign in

flutter_package / fluttertpc_get

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • fluttertpc_get
  • lib
  • item.dart
  • Added Benchmarks · 98a36e4b
    98a36e4b Browse Files
    Jonny Borges authored 2020-06-10 15:10:03 -0300
item.dart 180 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
class Item {
  final String title;

  Item({
    this.title,
  });
}

final List<Item> sampleItems = [
  Item(title: 'Item 1'),
  Item(title: 'Item 2'),
  Item(title: 'Item 3')
];