RecipeSummary constructor

RecipeSummary({
  1. DateTime? creationDateTime,
  2. DateTime? lastUpdatedDateTime,
  3. String? name,
  4. String? recipeArn,
  5. String? status,
})

Implementation

RecipeSummary({
  this.creationDateTime,
  this.lastUpdatedDateTime,
  this.name,
  this.recipeArn,
  this.status,
});