Skip to content

Releases: 0xLeif/UDLoader

Save & Load Codable Values

03 Sep 22:59

Choose a tag to compare

// Save Codable Value
SimpleCodableObject(string: "UDLoader", bool: false, int: 3).save(withKey: "simple")

// Load Codable Value
SimpleCodableObject.load(withKey: "simple")
    .whenSuccess { value in
    // ...
}