CallFunctionResponse.fromJson constructor

CallFunctionResponse.fromJson(
  1. Map json_
)

Implementation

CallFunctionResponse.fromJson(core.Map json_)
    : this(
        error: json_['error'] as core.String?,
        executionId: json_['executionId'] as core.String?,
        result: json_['result'] as core.String?,
      );