ServerTime.fromCBJson constructor
Implementation
factory ServerTime.fromCBJson(Map<String, dynamic> json) {
return ServerTime(
DateTime.parse(json['iso']),
nullableNumber(json, 'epochSeconds'),
nullableNumber(json, 'epochMillis'),
);
}