toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final name = this.name;
  final glueIps = this.glueIps;
  return {
    'Name': name,
    if (glueIps != null) 'GlueIps': glueIps,
  };
}