log static method
Implementation
static log(String? message, {int? wrapWidth, String? tag}) {
if (kDebugMode) {
final print =
'${XfdnDesignSystem.labels.appName}::${tag == null ? '' : '[$tag]'}$message';
debugPrint(print, wrapWidth: wrapWidth);
}
}