PlatformUpdatePostRequest constructor

PlatformUpdatePostRequest({
  1. required int userId,
  2. required String key,
  3. String? newKey,
  4. String? name,
  5. String? lmsUrl,
  6. String? cmsUrl,
  7. String? portalUrl,
})

Returns a new PlatformUpdatePostRequest instance.

Implementation

PlatformUpdatePostRequest({
  required this.userId,
  required this.key,
  this.newKey,
  this.name,
  this.lmsUrl,
  this.cmsUrl,
  this.portalUrl,
});