PutAccountSettingDefaultResponse.fromJson constructor
Implementation
factory PutAccountSettingDefaultResponse.fromJson(Map<String, dynamic> json) {
return PutAccountSettingDefaultResponse(
setting: json['setting'] != null
? Setting.fromJson(json['setting'] as Map<String, dynamic>)
: null,
);
}