ApplicationResponse constructor

ApplicationResponse({
  1. required String arn,
  2. required String id,
  3. required String name,
  4. Map<String, String>? tags,
})

Implementation

ApplicationResponse({
  required this.arn,
  required this.id,
  required this.name,
  this.tags,
});