ActionCallResult.fromJson constructor

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

Implementation

factory ActionCallResult.fromJson(Map<String, dynamic> json) => ActionCallResult(
    callId: (json['CallId'] as String?) ?? '',
    resultJson: (json['ResultJson'] as String?) ?? '',
);