EventsConfiguration.fromJson constructor
Implementation
factory EventsConfiguration.fromJson(Map<String, dynamic> json) {
return EventsConfiguration(
botId: json['BotId'] as String?,
lambdaFunctionArn: json['LambdaFunctionArn'] as String?,
outboundEventsHTTPSEndpoint:
json['OutboundEventsHTTPSEndpoint'] as String?,
);
}