BoardCreateBeanLocation.fromJson constructor
Implementation
factory BoardCreateBeanLocation.fromJson(Map<String, Object?> json) {
return BoardCreateBeanLocation(
type: json[r'type'] != null
? BoardCreateBeanLocationType.fromValue(json[r'type']! as String)
: null,
projectKeyOrId: json[r'projectKeyOrId'] as String?,
);
}