toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  if (applicationId != null) {
    json[r'ApplicationId'] = applicationId;
  }
    json[r'ApplicationIdentifier'] = applicationIdentifier;
  if (name != null) {
    json[r'Name'] = name;
  }
  if (version != null) {
    json[r'Version'] = version;
  }
  if (developer != null) {
    json[r'Developer'] = developer;
  }
  if (modelName != null) {
    json[r'ModelName'] = modelName;
  }
  if (model != null) {
    json[r'Model'] = model;
  }
  return json;
}