This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:get_storage/get_storage.dart'; | |
class CacheValue { | |
dynamic value; | |
DateTime? lastSaved; | |
CacheValue({required this.value, this.lastSaved}); | |
Map<String, dynamic> toJson() => { | |
'value': value, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CheckUpdate.swift | |
// CheckApp | |
// | |
// Created by Ana Carolina on 13/11/20. | |
// Copyright © 2020 acarolsf. All rights reserved. | |
// | |
import Foundation | |
import UIKit |