show method

void show([
  1. String? display
])

Implementation

void show([String? display]) {
  element?.style.display = display ?? 'block';
}