Skip to content

Commit 0f80b5f

Browse files
committed
fix(app): fix formatting
1 parent 3c20c9d commit 0f80b5f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

flutter_secure_storage_platform_interface/lib/flutter_secure_storage_platform_interface.dart

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,14 @@ abstract class FlutterSecureStoragePlatform extends PlatformInterface {
121121
required Map<String, String> options,
122122
});
123123

124-
125124
/// Checks if the android device supports secure hardware-backed storage.
126-
///
125+
///
127126
/// Returns:
128-
/// - A [Future] that resolves to `true` if the device supports secure hardware-backed storage, or `false` otherwise.
127+
/// - A [Future] that resolves to `true` if the device supports secure
128+
/// hardware-backed storage, or `false` otherwise.
129129
Future<bool> isStrongBoxSupported() {
130-
throw UnsupportedError('isStrongBoxSupported() is not available on this platform');
130+
throw UnsupportedError(
131+
'isStrongBoxSupported() is not available on this platform',
132+
);
131133
}
132134
}

0 commit comments

Comments
 (0)