saveDeployment method
Save the deployment persistently to the local cache.
Returns true
if successful.
Implementation
Future<bool> saveDeployment() async => (deployment != null)
? await Persistence().saveDeployment(deployment!)
: false;
Save the deployment persistently to the local cache.
Returns true
if successful.
Future<bool> saveDeployment() async => (deployment != null)
? await Persistence().saveDeployment(deployment!)
: false;