toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (jwt != null) 'jwt': jwt!,
  if (jwtHeader != null) 'jwtHeader': jwtHeader!,
  if (jwtPayload != null) 'jwtPayload': jwtPayload!,
  if (secret != null) 'secret': secret!,
};