ApprovalRequestResponseModel constructor
const
ApprovalRequestResponseModel({
- required List<
ApprovalRequestModel> data, - MetaData? meta,
Creates a new instance of the ApprovalRequestResponseModel
class.
The data
parameter represents the list of approval request data.
The meta
parameter is optional and represents additional metadata associated with the response.
Implementation
const ApprovalRequestResponseModel({
required this.data,
this.meta,
});