fromJson static method
Implementation
@visibleForTesting
static SendDataConfig? fromJson(json) {
if (json == null) return null;
var result = SendDataConfig(
json["sessionId"],
json["step"],
json["data"],
);
return result;
}
@visibleForTesting
static SendDataConfig? fromJson(json) {
if (json == null) return null;
var result = SendDataConfig(
json["sessionId"],
json["step"],
json["data"],
);
return result;
}