IsolateExecutor constructor Null safety
Implementation
IsolateExecutor({
this.executorName = 'IsolateExecutor',
required this.maximumPoolSize,
this.corePoolSize = 0,
this.keepActiveTime = 120,
}) : assert(executorName.isNotEmpty),
assert(corePoolSize >= 0),
assert(maximumPoolSize > 0 && maximumPoolSize >= corePoolSize),
assert(keepActiveTime > 0);