setBannerBackgroundColor static method
Sets a background color for the banner with the specified adUnitId
.
Only hex strings ('#xxxxxx') are accepted.
Implementation
static void setBannerBackgroundColor(String adUnitId, String hexColorCodeString) {
_methodChannel.invokeMethod('setBannerBackgroundColor', {
'ad_unit_id': adUnitId,
'hex_color_code': hexColorCodeString,
});
}