toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (applicableCountries != null)
    'applicableCountries': applicableCountries!,
  if (attributeName != null) 'attributeName': attributeName!,
  if (code != null) 'code': code!,
  if (description != null) 'description': description!,
  if (destination != null) 'destination': destination!,
  if (detail != null) 'detail': detail!,
  if (documentation != null) 'documentation': documentation!,
  if (resolution != null) 'resolution': resolution!,
  if (servability != null) 'servability': servability!,
};