Rohit Singh

Results 2 issues of Rohit Singh

More sizes added. Example file also updated to integrate with the new additions. Readme.md not edited.

https://github.com/carzacc/jwt-tutorial-flutter/blob/dcda3bd36107e416bbe4b43afd5ab3bb432eddf7/lib/main.dart#L39 The if statement should be: ``` if(DateTime.now().isAfter(DateTime.fromMillisecondsSinceEpoch(payload["exp"] * 1000))){ } ``` Your statement always return true as the value is negative. Thank You.