ApiResponse constructor
Creates an instance of ApiResponse.
The code and message parameters are required, while body and errors
are optional.
Implementation
ApiResponse({
required this.code,
required this.message,
this.body,
this.errors,
});