decode static method
Implementation
static UITooltipMessage? decode(dynamic json) {
if (json == null) {
return null;
}
if (json is! Map<String, dynamic>) {
return null;
}
return UITooltipMessage(
title: StringDecoder.decode(json['title']),
);
}