LauncherViewPostRequest constructor

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

Returns a new LauncherViewPostRequest instance.

Implementation

LauncherViewPostRequest({
  required this.userId,
  required this.key,
  this.name,
  this.org,
  this.lmsUrl,
  this.cmsUrl,
  this.portalUrl,
});