build method
Implementation
@override
InlineSpan build() {
if (customTag == null) {
return super.build();
}
return (tagHandlers ?? [])
.firstWhere((handler) => handler.tag == customTag)
.build(customContent ?? "", customAttributes!);
}