MockAwsRequest constructor

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

Implementation

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