whenn function

  1. @isTestGroup
void whenn(
  1. String description,
  2. dynamic body(), {
  3. dynamic after()?,
  4. bool skip = false,
})

Alias for when; with slight alterations in the signature

see when for the documentation

Implementation

@isTestGroup
void whenn(
  String description,
  dynamic Function() body, {
  dynamic Function()? after,
  bool skip = false,
}) =>
    when(description, body, after: after, skip: skip);