Code has been added to clipboard!
Modifiers in Solidity Functions
 Example    
 pragma solidity >=0.5.0 <0.7.0;
contract owned {
    constructor() public { owner = msg.sender; }
    address payable owner;
    modifier onlyOwner {
        require(
            msg.sender == owner,
            "Only owner can call this function."
        );
        _;
    }
}