toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final connectionArn = this.connectionArn;
  final name = this.name;
  final owner = this.owner;
  return {
    'ConnectionArn': connectionArn,
    'Name': name,
    'Owner': owner,
  };
}