SupportedGatewayRequestBody constructor

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

Returns a new SupportedGatewayRequestBody instance.

Implementation

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