stake method

Future stake(
  1. int amount
)

Implementation

Future<dynamic> stake(int amount) async {
  return contract.send("stake", [BigInt.from(amount)]);
}