UserOperationResult.fromJson constructor
Implementation
factory UserOperationResult.fromJson(Map<String, dynamic> json) {
return UserOperationResult(
userOperation: json['userOperation'] != null
? UserOperation.fromJson(json['userOperation'])
: null,
entryPoint: json['entryPoint'],
blockNumber: json['blockNumber'],
blockHash: json['blockHash'],
transactionHash: json['transactionHash'],
);
}