PartialArg constructor

PartialArg({
  1. NullValue? nullValue,
  2. double? numberValue,
  3. String? stringValue,
  4. bool? boolValue,
  5. required String jsonPath,
  6. bool willContinue = false,
})

Implementation

PartialArg({
  this.nullValue,
  this.numberValue,
  this.stringValue,
  this.boolValue,
  required this.jsonPath,
  this.willContinue = false,
}) : super(fullyQualifiedName);