ClaimDevicesByClaimCodeResponse.fromJson constructor

ClaimDevicesByClaimCodeResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ClaimDevicesByClaimCodeResponse.fromJson(Map<String, dynamic> json) {
  return ClaimDevicesByClaimCodeResponse(
    claimCode: json['claimCode'] as String?,
    total: json['total'] as int?,
  );
}