ActionFunctionCancel.fromJson constructor

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

Implementation

factory ActionFunctionCancel.fromJson(Map<String, dynamic> json) => ActionFunctionCancel(
    callId: (json['CallId'] as String?) ?? '',
    instanceId: (json['InstanceId'] as String?) ?? '',
);