isAutoInitEnabled property

  1. @override
bool isAutoInitEnabled

Returns whether messaging auto initialization is enabled or disabled for the device.

Implementation

@override
bool get isAutoInitEnabled {
  // Not supported on web, since it automatically initializes when imported
  // via the script. So return `true`.
  return true;
}