CreateFlowResponse.fromJson constructor

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

Implementation

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