ListDomainModel constructor

ListDomainModel({
  1. int? code,
  2. String? response,
  3. List<Content>? content,
})

Implementation

ListDomainModel({
  this.code,
  this.response,
  this.content,
});