Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND 2 : 3 : part of 'chatwoot_action_data.dart'; 4 : 5 : // ************************************************************************** 6 : // JsonSerializableGenerator 7 : // ************************************************************************** 8 : 9 0 : ChatwootActionData _$ChatwootActionDataFromJson(Map<String, dynamic> json) { 10 0 : return ChatwootActionData( 11 0 : action: actionTypeFromJson(json['action'] as String?), 12 : ); 13 : } 14 : 15 1 : Map<String, dynamic> _$ChatwootActionDataToJson(ChatwootActionData instance) => 16 1 : <String, dynamic>{ 17 2 : 'action': actionTypeToJson(instance.action), 18 : };