BasmalaStyle constructor

BasmalaStyle({
  1. Color? basmalaColor,
  2. double? basmalaWidth,
  3. double? basmalaHeight,
})

A class that defines the style for the Basmala.

The Basmala is the phrase "Bismillah" which is often used in Islamic texts. This class allows customization of the Basmala's color, width, and height.

Example usage:

BasmalaStyle(
  basmalaColor: Colors.black,
  basmalaWidth: 100.0,
  basmalaHeight: 50.0,
);

Properties:

  • basmalaColor: The color of the Basmala.
  • basmalaWidth: The width of the Basmala.
  • basmalaHeight: The height of the Basmala.

Implementation

BasmalaStyle({
  this.basmalaColor,
  this.basmalaWidth,
  this.basmalaHeight,
});