decode static method

FeedbackEntry decode(
  1. String source
)

Restores an entry from a string previously returned by encode.

Implementation

static FeedbackEntry decode(String source) =>
    FeedbackEntry.fromJson(jsonDecode(source) as Map<String, dynamic>);