BorrowConfiguration.fromJson constructor
Implementation
factory BorrowConfiguration.fromJson(Map<String, dynamic> json) {
return BorrowConfiguration(
allowEarlyCheckIn: json['AllowEarlyCheckIn'] as bool,
maxTimeToLiveInMinutes: json['MaxTimeToLiveInMinutes'] as int,
);
}