UserPlatformViewPostRequest constructor

UserPlatformViewPostRequest({
  1. required int userId,
  2. required String key,
  3. DateTime? addedOn,
  4. DateTime? expiredOn,
  5. bool? isAdmin,
  6. bool? active,
})

Returns a new UserPlatformViewPostRequest instance.

Implementation

UserPlatformViewPostRequest({
  required this.userId,
  required this.key,
  this.addedOn,
  this.expiredOn,
  this.isAdmin,
  this.active,
});