ActiveContextTimeToLive.fromJson constructor
Implementation
factory ActiveContextTimeToLive.fromJson(Map<String, dynamic> json) {
return ActiveContextTimeToLive(
timeToLiveInSeconds: json['timeToLiveInSeconds'] as int?,
turnsToLive: json['turnsToLive'] as int?,
);
}