• This project
    • Loading...
  • Sign in

flutter_package / dart_pdf

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
  • dart_pdf
  • demo
  • lib
  • data.dart
  • Fix flutter test target · 858a414e
    858a414e Browse Files
    David PHAM-VAN authored 2024-03-11 09:24:19 -0300
data.dart 150 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
class CustomData {
  const CustomData({
    this.name = '[your name]',
    this.testing = false,
  });

  final String name;

  final bool testing;
}