MethodChannelResponse.fromJson constructor

MethodChannelResponse.fromJson(
  1. dynamic json
)

Implementation

factory MethodChannelResponse.fromJson(dynamic json) {
  return MethodChannelResponse(json["result"], json["arguments"]);
}