toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{
    if (accessToken != null) r'accessToken': accessToken,
    if (credentials != null) r'credentials': credentials,
    if (tokenType != null) r'tokenType': tokenType,
  };
}