I constructor

I({
  1. String? text,
  2. String? className,
  3. String tag = 'i',
})

Implementation

I({
  this.text,
  super.className,
  super.tag = 'i',
});