canSerialize method
Implementation
@override
bool canSerialize(dynamic body, {String? contentType}) {
if (body is! Map) return false;
final lowered = contentType?.toLowerCase();
return lowered != null &&
lowered.contains('application/x-www-form-urlencoded');
}