ActionCall.fromJson constructor

ActionCall.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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