LinkFacebookRequest constructor
LinkFacebookRequest({
- AccountFacebook? account,
- BoolValue? sync,
Implementation
factory LinkFacebookRequest({
AccountFacebook? account,
$1.BoolValue? sync,
}) {
final _result = create();
if (account != null) {
_result.account = account;
}
if (sync != null) {
_result.sync = sync;
}
return _result;
}