factory TransStruct.fromJson(Map<String, dynamic> json) { return TransStruct( option: (json['option'] as List).map((i) => i).toList(), title: json['title']); }