OpenApiChannelInformationResponse constructor

OpenApiChannelInformationResponse({
  1. int? status,
  2. String? message,
  3. List<ChannelInformationResult> channelList = const [],
})

Implementation

OpenApiChannelInformationResponse({
  int? status,
  String? message,
  this.channelList = const [],
}) : super(
        status: status,
        message: message,
      );