GatewayRequestStateParams.fromJson constructor
Implementation
GatewayRequestStateParams.fromJson(Map<String, dynamic> json) {
if (json['reattached_sessions'] != null) {
gatewayRequestParams = <Null>[];
json['reattached_sessions'].forEach((v) {
gatewayRequestParams!.add(v);
});
}
}