Status constructor
Status({
- required StatusTypeEnum type,
- required dynamic value,
- required num? code,
- required String? message,
Returns a new Status instance.
Implementation
Status({
required this.type,
required this.value,
required this.code,
required this.message,
});