isSandboxEnvironment method
Implementation
@override
Future<bool> isSandboxEnvironment() async {
final bool? isSandbox = await methodChannel.invokeMethod<bool>('isSandboxEnvironment');
return isSandbox ?? false; // Provide a default value (false)
}