Info constructor

  1. @jsonSerializable
const Info({
  1. required String name,
  2. String? message,
})

Implementation

@jsonSerializable
const factory Info({
  required String name,
  String? message,
}) = _Info;