Cloudprovider constructor

Cloudprovider({
  1. String? providerId,
  2. required String name,
  3. String? parentCompany,
  4. String? marketingHomepageUrl,
  5. String? dateCreated,
  6. String? lastUpdated,
  7. String? active,
})

Returns a new Cloudprovider instance.

Implementation

Cloudprovider({
  this.providerId,
  required this.name,
  this.parentCompany,
  this.marketingHomepageUrl,
  this.dateCreated,
  this.lastUpdated,
  this.active,
});