SupportedGateway constructor

SupportedGateway({
  1. required num id,
  2. required String name,
  3. required String balenaType,
  4. required String appName,
  5. ChannelType channelType = const ChannelType._('balena'),
  6. LogbotLink? logbotLink,
})

Returns a new SupportedGateway instance.

Implementation

SupportedGateway({
  required this.id,
  required this.name,
  required this.balenaType,
  required this.appName,
  this.channelType = const ChannelType._('balena'),
  this.logbotLink,
});