put method

Future<bool> put(
  1. AtKey atKey,
  2. dynamic value
)

Returns true on updating atKey with value for current @sign.

Implementation

Future<bool> put(AtKey atKey, dynamic value) async {
  return _getAtClientForAtsign().put(atKey, value);
}