LexBot.fromJson constructor

LexBot.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory LexBot.fromJson(Map<String, dynamic> json) {
  return LexBot(
    lexRegion: json['LexRegion'] as String?,
    name: json['Name'] as String?,
  );
}