• 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
  • Add text input to the demo · ee1e8f0d
    ee1e8f0d Browse Files
    David PHAM-VAN authored 2021-03-22 09:01:09 -0300
data.dart 92 Bytes
Raw Blame History Permalink
1 2 3 4 5
class CustomData {
  const CustomData({this.name = '[your name]'});

  final String name;
}