ListAccountSettingsResponse.fromJson constructor
Implementation
factory ListAccountSettingsResponse.fromJson(Map<String, dynamic> json) {
return ListAccountSettingsResponse(
nextToken: json['nextToken'] as String?,
settings: (json['settings'] as List?)
?.whereNotNull()
.map((e) => Setting.fromJson(e as Map<String, dynamic>))
.toList(),
);
}