whiteLabelingParamsString method

String whiteLabelingParamsString([
  1. String? toStringBody
])

Implementation

String whiteLabelingParamsString([String? toStringBody]) {
  return 'logoImageUrl: ${logoImageUrl != null ? '[' + logoImageUrl!.substring(0, min(30, logoImageUrl!.length)) + '...]' : 'null'}, logoImageHeight: $logoImageHeight, '
      'appTitle: $appTitle, favicon: $favicon, paletteSettings: $paletteSettings, '
      'helpLinkBaseUrl: $helpLinkBaseUrl, enableHelpLinks: $enableHelpLinks, showNameVersion: $showNameVersion, '
      'platformName: $platformName, platformVersion: $platformVersion, customCss: $customCss${toStringBody != null ? ', ' + toStringBody : ''}';
}