January 2020
Intermediate to advanced
368 pages
12h 45m
English
This chapter covers
This book is about building mobile apps with Flutter. But you can’t write a Flutter app without learning a bit about the Dart programming language first. The good news is that Dart is also quite easy to pick up. If you’re already comfortable enough with Dart that you understand the following code block, you can skip this chapter:
class CompanyContext extends StateObject { final bool isLoading; String _companyId; CompanyContext({ this.isLoading = false, }); String get companyId => _companyId; void set companyId(String id) ...Read now
Unlock full access