Input$FlowFlowActionActionProfileValueInput.fromJson constructor

Input$FlowFlowActionActionProfileValueInput.fromJson(
  1. Map<String, dynamic> data
)

Implementation

factory Input$FlowFlowActionActionProfileValueInput.fromJson(
    Map<String, dynamic> data) {
  final result$data = <String, dynamic>{};
  if (data.containsKey('custom')) {
    final l$custom = data['custom'];
    result$data['custom'] = (l$custom as String?);
  }
  if (data.containsKey('response')) {
    final l$response = data['response'];
    result$data['response'] = (l$response as String?);
  }
  return Input$FlowFlowActionActionProfileValueInput._(result$data);
}