SendChannelMessageResponse.fromJson constructor
Implementation
factory SendChannelMessageResponse.fromJson(Map<String, dynamic> json) {
return SendChannelMessageResponse(
channelArn: json['ChannelArn'] as String?,
messageId: json['MessageId'] as String?,
);
}