signatureColors property
set
signatureColors
(List value)
A list of colors that the user can select to create a signature.
config.signatureColors = [
{ 'red': 255, 'green': 0, 'blue': 0 },
{ 'red': 0, 'green': 0, 'blue': 0 }
];
Each color is given by a Map<String, int>
containing RGB values, with a
maximum of three colors. On Android, when this config is set, the user
will not be able to customize each color shown. Defaults to black, blue,
green for Android, and black, blue, red for iOS.
Implementation
set signatureColors(List value) => _signatureColors = value;