encode method
Encode object to bytes.
Example:
final person = Person(name: "john");
final bytes = messageAdapter.encode(person);
Implementation
@override
Uint8List encode(Object object, String topic, dynamic encoder) {
List<int> bytes = utf8.encode(object as String);
return Uint8List.fromList(bytes);
}