BoardCreateBeanLocation.fromJson constructor

BoardCreateBeanLocation.fromJson(
  1. Map<String, Object?> json
)

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?,
  );
}