BoardConfigBeanLocation.fromJson constructor

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

Implementation

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