PNSessionConfig constructor
Implementation
PNSessionConfig(Map<String, dynamic> input) {
try {
timeZone = input['time_zone'];
threshold = input['threshold'] != null ? RelativeDate(input['threshold'].cast<String, dynamic>()): null;
} catch (e) {
dt.log("Error processing PNSession ${e.toString()}");
}
}