static Data? fromJson(Map<String, dynamic>? json) { if (json == null) { return null; } return Data(data: (json['data'] as String?) ?? ''); }