save method

  1. @override
Future<void> save()
override

Data stored in the model is stored in a database external to the app that is tied to the model.

The updated Resuult can be obtained at the stage where the loading is finished.

Implementation

@override
Future<void> save() async {
  throw UnimplementedError("Save process should be done for each document.");
}