decode static method

KAuthSession decode(
  1. String encoded
)

JSON 문자열에서 디코딩

Implementation

static KAuthSession decode(String encoded) {
  return KAuthSession.fromJson(jsonDecode(encoded) as Map<String, dynamic>);
}