SprintSwapBean.fromJson constructor

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

Implementation

factory SprintSwapBean.fromJson(Map<String, Object?> json) {
  return SprintSwapBean(
    sprintToSwapWith: (json[r'sprintToSwapWith'] as num?)?.toInt(),
  );
}