toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final region = this.region;
  final registryId = this.registryId;
  return {
    'region': region,
    'registryId': registryId,
  };
}