ServiceCallingComponent constructor

ServiceCallingComponent({
  1. required String rootName,
  2. required Component child,
  3. Duration serviceMaxIdleDuration = const Duration(minutes: 180),
  4. bool createStateOnCall = true,
  5. bool createStateOnInitialize = true,
})

Implementation

ServiceCallingComponent({
  required this.rootName,
  required this.child,
  this.serviceMaxIdleDuration = const Duration(minutes: 180),
  this.createStateOnCall = true,
  this.createStateOnInitialize = true,
}) : super(child);