CloudProviders constructor

CloudProviders({
  1. DateTime? dateCreated,
  2. DateTime? lastUpdated,
  3. int? providerId,
  4. required String name,
  5. String? parentCompany,
  6. String? marketingHomepageUrl,
})

Returns a new CloudProviders instance.

Implementation

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