FunctionCall.fromJson constructor

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

Implementation

factory FunctionCall.fromJson(Map<String, dynamic> json) {
  return FunctionCall(
    methodName: json['methodName'],
    args: json['args'],
    gas: json['gas'],
    deposit: json['deposit'],
  );
}