IdentityUsage.fromJson constructor

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

Implementation

factory IdentityUsage.fromJson(Map<String, dynamic> json) {
  return IdentityUsage(
    dataStorage: json['DataStorage'] as int?,
    datasetCount: json['DatasetCount'] as int?,
    identityId: json['IdentityId'] as String?,
    identityPoolId: json['IdentityPoolId'] as String?,
    lastModifiedDate: timeStampFromJson(json['LastModifiedDate']),
  );
}