MockAwsRequest constructor

MockAwsRequest(
  1. String awsAccessKey,
  2. String awsSecretKey,
  3. String region, {
  4. required Future<Response> mockFunction(
    1. Request
    ),
  5. String? service,
  6. Duration timeout = const Duration(seconds: 10),
})

Implementation

MockAwsRequest(
  this.awsAccessKey,
  this.awsSecretKey,
  this.region, {
  required this.mockFunction,
  this.service,
  this.timeout = const Duration(seconds: 10),
});