get method
Retrieve a template by id, or null if not found.
Implementation
@override
Future<FaceTemplate?> get(String id) async {
final raw = await _storage.read(key: _templateKey(id));
if (raw == null) return null;
return FaceTemplate.fromJson(jsonDecode(raw) as Map<String, dynamic>);
}