UpdateFlowResponse.fromJson constructor

UpdateFlowResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory UpdateFlowResponse.fromJson(Map<String, dynamic> json) {
  return UpdateFlowResponse(
    flow: json['flow'] != null
        ? Flow.fromJson(json['flow'] as Map<String, dynamic>)
        : null,
  );
}