UpdateCustomFieldDetails.fromJson constructor
Implementation
factory UpdateCustomFieldDetails.fromJson(Map<String, Object?> json) {
return UpdateCustomFieldDetails(
description: json[r'description'] as String?,
name: json[r'name'] as String?,
searcherKey: json[r'searcherKey'] != null
? UpdateCustomFieldDetailsSearcherKey.fromValue(
json[r'searcherKey']! as String)
: null,
);
}