InfoModel constructor

const InfoModel({
  1. required String message,
  2. required String source,
})

Creates a new instance of InfoModel.

  • message: The informational message to be displayed or logged.
  • source: The origin or source of the information (e.g., API endpoint, service).

Implementation

const InfoModel({
  required this.message,
  required this.source,
});