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; }