update method
Updates the current instance with new data.
Implementation
@override
Future<bool> update({Disk? disk}) async =>
await Model.updateInstance<AuthSession>(
instance: this,
disk: disk ?? this.disk,
withJson: toMetaJson(),
);