BaseAppletRequest constructor

BaseAppletRequest({
  1. required String apiServer,
  2. required String appletId,
  3. Map<String, String>? startParams,
  4. bool? animated = true,
  5. bool isSingleProcess = false,
  6. bool isSingTask = false,
})

Implementation

BaseAppletRequest({
  required this.apiServer,
  required this.appletId,
  this.startParams,
  this.animated = true,
  this.isSingleProcess = false,
  this.isSingTask = false,
});