toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final applicationName = this.applicationName;
  final templateName = this.templateName;
  return {
    if (applicationName != null) 'ApplicationName': applicationName,
    if (templateName != null) 'TemplateName': templateName,
  };
}