Skip to content

Commit

Permalink
Update serialization.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-mu authored Apr 5, 2024
1 parent 9406c37 commit 85fd7cf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion nsd_platform_interface/lib/src/serialization.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ Service? deserializeService(dynamic arguments) {
final type = data['service.type'] as String?;
final host = data['service.host'] as String?;
final port = data['service.port'] as int?;
final txt = data['service.txt'] != null
final addresses = data['service.addresses'] as String?;
final txt = data['service.txt'] != null ? Map<String, Uint8List?>.from(data['service.txt']) : null;

Expand Down

0 comments on commit 85fd7cf

Please sign in to comment.