MatexCountryBlocEventPayload constructor

MatexCountryBlocEventPayload({
  1. List<MatexCountryMetadata>? countries,
  2. String? jsonData,
})

Creates an instance of the MatexCountryBlocEventPayload.

Both parameters are optional.

  • countries: A list of MatexCountryMetadata instances.
  • jsonData: A JSON formatted string.

Implementation

MatexCountryBlocEventPayload({
  this.countries,
  this.jsonData,
});