toJson method
Implementation
Map<String, dynamic> toJson() {
return {
'outerResponse': outerResponse.toJson(),
if (header != null) 'header': header!.toJson(),
if (securityDetails != null) 'securityDetails': securityDetails!.toJson(),
if (errors != null) 'errors': errors!.map((e) => e.toJson()).toList(),
};
}