toJson method
Implementation
Map<String, dynamic> toJson() {
final name = this.name;
final roleArn = this.roleArn;
final securityGroupIds = this.securityGroupIds;
final subnetId = this.subnetId;
return {
'name': name,
'roleArn': roleArn,
'securityGroupIds': securityGroupIds,
'subnetId': subnetId,
};
}