back method

Gun back({
  1. int? amount,
})

Move up to the parent context on the chain.

Implementation

Gun back({int? amount}) {
  final gun = _gun.back(amount);
  return Gun._(gun);
}