IdentityPoolUsage.fromJson constructor
Implementation
factory IdentityPoolUsage.fromJson(Map<String, dynamic> json) {
return IdentityPoolUsage(
dataStorage: json['DataStorage'] as int?,
identityPoolId: json['IdentityPoolId'] as String?,
lastModifiedDate: timeStampFromJson(json['LastModifiedDate']),
syncSessionsCount: json['SyncSessionsCount'] as int?,
);
}