App Version added and dart format
This commit is contained in:
@@ -15,7 +15,7 @@ class ImpsTransaction {
|
||||
required this.ifscCode,
|
||||
this.remitterName,
|
||||
required this.beneficiaryName,
|
||||
required this.tpin,
|
||||
required this.tpin,
|
||||
this.remarks,
|
||||
});
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ class NeftTransaction {
|
||||
required this.ifscCode,
|
||||
required this.remitterName,
|
||||
required this.beneficiaryName,
|
||||
required this.tpin,
|
||||
required this.tpin,
|
||||
this.remarks,
|
||||
});
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ class Transfer {
|
||||
required this.toAccount,
|
||||
required this.toAccountType,
|
||||
required this.amount,
|
||||
this.tpin,
|
||||
this.tpin,
|
||||
this.remarks,
|
||||
});
|
||||
|
||||
|
||||
@@ -49,12 +49,10 @@ class AuthRepository {
|
||||
_tokenExpiryKey, token.expiresAt.toIso8601String());
|
||||
}
|
||||
|
||||
Future<void> clearAuthTokens() async {
|
||||
Future<void> clearAuthTokens() async {
|
||||
await _secureStorage.deleteAll();
|
||||
|
||||
}
|
||||
|
||||
|
||||
Future<AuthToken?> _getAuthToken() async {
|
||||
final accessToken = await _secureStorage.read(_accessTokenKey);
|
||||
final expiryString = await _secureStorage.read(_tokenExpiryKey);
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
|
||||
|
||||
import 'package:dio/dio.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:kmobile/data/models/transaction.dart';
|
||||
|
||||
Reference in New Issue
Block a user