ActionCall.fromJson constructor
Implementation
factory ActionCall.fromJson(Map<String, dynamic> json) => ActionCall(
actionId: (json['ActionId'] as String?) ?? '',
callId: (json['CallId'] as String?) ?? '',
callArgumentsJson: (json['CallArgumentsJson'] as String?) ?? '',
);