ListVendorsResponse constructor

ListVendorsResponse({
  1. String? nextPageToken,
  2. int? totalSize,
  3. List<Company>? vendors,
})

Implementation

ListVendorsResponse({
  this.nextPageToken,
  this.totalSize,
  this.vendors,
});