fromJson static method
Implementation
static SavedCredentials? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return SavedCredentials(
id: (json['id'] as String?) ?? '',
title: (json['title'] as String?) ?? '',
);
}