decode method
Implementation
@override
Future<proto_multi.MultiRemoteAttachment> decode(EncodedContent encodedContent) async {
try {
return proto_multi.MultiRemoteAttachment.fromBuffer(encodedContent.content);
} catch (e) {
throw FormatException('Failed to decode MultiRemoteAttachment: $e');
}
}