License constructor
License({
- required num id,
- required String token,
- required String balenaId,
- required String apiKey,
- SupportedGateway? supportedGateway,
- String? orgId,
- String? appId,
- bool? available,
- LicenseGateway? gateway,
Returns a new License instance.
Implementation
License({
required this.id,
required this.token,
required this.balenaId,
required this.apiKey,
this.supportedGateway,
this.orgId,
this.appId,
this.available,
this.gateway,
});