Form.fromJson constructor
      
      Form.fromJson(
    
    
- Map json_
Implementation
Form.fromJson(core.Map json_)
  : this(
      formUrl: json_['formUrl'] as core.String?,
      responseUrl: json_['responseUrl'] as core.String?,
      thumbnailUrl: json_['thumbnailUrl'] as core.String?,
      title: json_['title'] as core.String?,
    );