toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final providerAttributeName = this.providerAttributeName;
  final providerAttributeValue = this.providerAttributeValue;
  final providerName = this.providerName;
  return {
    if (providerAttributeName != null)
      'ProviderAttributeName': providerAttributeName,
    if (providerAttributeValue != null)
      'ProviderAttributeValue': providerAttributeValue,
    if (providerName != null) 'ProviderName': providerName,
  };
}