Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

24 Zeilen
798 B

  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'recognition_result.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. RecognitionResult _$RecognitionResultFromJson(Map<String, dynamic> json) =>
  7. RecognitionResult(
  8. header: json['header'] == null
  9. ? null
  10. : Header.fromJson(json['header'] as Map<String, dynamic>),
  11. payload: json['payload'] == null
  12. ? null
  13. : Payload.fromJson(json['payload'] as Map<String, dynamic>),
  14. );
  15. Map<String, dynamic> _$RecognitionResultToJson(RecognitionResult instance) =>
  16. <String, dynamic>{
  17. 'header': instance.header,
  18. 'payload': instance.payload,
  19. };