KuzzleRequest constructor
KuzzleRequest({
- String? action,
- Map<
String, dynamic> ? body, - String? collection,
- String? controller,
- String? index,
- String? jwt,
- String? lang,
- String? requestId,
- bool? waitForRefresh,
- bool? force,
- String? uid,
- Map<
String, dynamic> ? volatile, - DateTime? startTime,
- DateTime? stopTime,
- String? strategy,
- String? expiresIn,
- int? from,
- int? size,
- String? type,
- String? scroll,
- String? scrollId,
- List? sort,
- int? retryOnConflict,
- bool? reset,
- String? scope,
- String? state,
- bool? source,
- String? userId,
- String? users,
- String? verb,
- bool? includeKuzzleMeta,
Implementation
KuzzleRequest(
{this.action,
this.body,
this.collection,
this.controller,
this.index,
this.jwt,
this.lang,
this.requestId,
this.waitForRefresh,
this.force,
this.uid,
this.volatile,
this.startTime,
this.stopTime,
this.strategy,
this.expiresIn,
this.from,
this.size,
this.type,
this.scroll,
this.scrollId,
this.sort,
this.retryOnConflict,
this.reset,
this.scope,
this.state,
this.source,
this.userId,
this.users,
this.verb,
this.includeKuzzleMeta}) {
requestId ??= _uuid.v4();
}