setCallToAction method

void setCallToAction({
  1. bool? isVisible,
  2. double? fontSize,
  3. NativeFontWeight? fontWeight,
  4. Color? color,
  5. Color? bgColor,
})

Implementation

void setCallToAction({
  bool? isVisible,
  double? fontSize,
  NativeFontWeight? fontWeight,
  Color? color,
  Color? bgColor,
}) {
  _buildNativeStyle(
    _callToAction,
    isVisible,
    fontSize,
    fontWeight,
    color,
    bgColor,
  );
}