Outcome.fromJson constructor

Outcome.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Outcome.fromJson(Map<String, dynamic> json) {
  return Outcome(
    arn: json['arn'] as String?,
    createdTime: json['createdTime'] as String?,
    description: json['description'] as String?,
    lastUpdatedTime: json['lastUpdatedTime'] as String?,
    name: json['name'] as String?,
  );
}