toJson method

Map<String, dynamic> toJson()

Creates a JSON-serializable representation of this instance.

Implementation

Map<String, dynamic> toJson() {
  return {
    'code_challenge': codeChallenge,
    'code_challenge_method': codeChallengeMethod
  };
}