factory Shortcut.fromJson(Map<String, dynamic> json) { return Shortcut( name: json['name'] as String, url: json['url'] as String, ); }