backgroundColor property

Color? get backgroundColor

Implementation

Color? get backgroundColor =>
    options['bgColor'] != null ? Color(options['bgColor'] as int) : null;
set backgroundColor (Color? color)

Implementation

set backgroundColor(Color? color){
  if(color !=null){
    options['bgColor'] = color.value;
  }
}