run method
Runs this command.
The return value is wrapped in a Future if necessary and returned by
CommandRunner.runCommand.
Implementation
@override
Future<int> run() async {
final client = container.read(userServiceClientProvider);
final user = await client.getCurrentUser(
Empty(),
options: getCallOptions(),
);
printOutput(user);
return 0;
}