save method

Future<void> save()

Implementation

Future<void> save() async {
  Debug().info(
      "Saving User Awards...Entries: ${_currentModel.toJson()}");
  await awardsTelemetryBox.put(
      awardsDBName, jsonEncode(_currentModel.toJson()));
}