DeviceBoundSessionWithUsage.fromJson constructor
Implementation
factory DeviceBoundSessionWithUsage.fromJson(Map<String, dynamic> json) {
return DeviceBoundSessionWithUsage(
sessionKey: DeviceBoundSessionKey.fromJson(
json['sessionKey'] as Map<String, dynamic>,
),
usage: DeviceBoundSessionWithUsageUsage.fromJson(json['usage'] as String),
);
}