MokaException.fromParsingException constructor
MokaException.fromParsingException(
- Exception error
Implementation
factory MokaException.fromParsingException(Exception error) {
return MokaException(
type: ExceptionType.serializationException,
message: 'Failed to parse network response to model or vice versa',
);
}