when<TResult extends Object?> method

  1. @optionalTypeArgs
TResult when<TResult extends Object?>({
  1. required TResult httpStub(
    1. String responseStubValue,
    2. int? statusCodeStubValue,
    3. Map<String, String> headersStubValue
    ),
  2. required TResult genericStub(
    1. void setUp(
      1. dynamic
      )
    ),
})
inherited

Implementation

@optionalTypeArgs
TResult when<TResult extends Object?>({
  required TResult Function(String responseStubValue,
          int? statusCodeStubValue, Map<String, String> headersStubValue)
      httpStub,
  required TResult Function(void Function(dynamic) setUp) genericStub,
}) =>
    throw _privateConstructorUsedError;